/[meteor]/googlecode.com/svn/trunk/Meteor/Config.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /googlecode.com/svn/trunk/Meteor/Config.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 9 by andrew.betts, Fri Dec 8 16:52:58 2006 UTC revision 50 by andrew.betts, Wed Feb 27 13:55:35 2008 UTC
# Line 1  Line 1 
1  #!/usr/bin/perl -w  #!/usr/bin/perl -w
2  ###############################################################################  ###############################################################################
3  #   Meteor  #   Meteor
4  #   An HTTP server for the 2.0 web  #   An HTTP server for the 2.0 web
5  #   Copyright (c) 2006 contributing authors  #   Copyright (c) 2006 contributing authors
6  #  #
7  #   Subscriber.pm  #   Subscriber.pm
8  #  #
9  #       Description:  #       Description:
10  #       Meteor Configuration handling.  #       Meteor Configuration handling.
11  #  #
12  #       Main program should call Meteor::Config::setCommandLineParameters(@ARGV),.  #       Main program should call Meteor::Config::setCommandLineParameters(@ARGV),.
13  #       Afterwards anybody can access $::CONF{<parameterName>}, where  #       Afterwards anybody can access $::CONF{<parameterName>}, where
14  #       <parameterName> is any valid parameter (except 'Help') listed in the  #       <parameterName> is any valid parameter (except 'Help') listed in the
15  #       @DEFAULTS array below.  #       @DEFAULTS array below.
16  #  #
17  ###############################################################################  ###############################################################################
18  #  #
19  #   This program is free software; you can redistribute it and/or modify it  #   This program is free software; you can redistribute it and/or modify it
20  #   under the terms of the GNU General Public License as published by the Free  #   under the terms of the GNU General Public License as published by the Free
21  #   Software Foundation; either version 2 of the License, or (at your option)  #   Software Foundation; either version 2 of the License, or (at your option)
22  #   any later version.  #   any later version.
23  #  #
24  #   This program is distributed in the hope that it will be useful, but WITHOUT  #   This program is distributed in the hope that it will be useful, but WITHOUT
25  #   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or  #   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
26  #   FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for  #   FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
27  #   more details.  #   more details.
28  #  #
29  #   You should have received a copy of the GNU General Public License along  #   You should have received a copy of the GNU General Public License along
30  #   with this program; if not, write to the Free Software Foundation, Inc.,  #   with this program; if not, write to the Free Software Foundation, Inc.,
31  #   59 Temple Place, Suite 330, Boston, MA 02111-1307 USA  #   59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
32  #  #
33  #   For more information visit www.meteorserver.org  #   For more information visit www.meteorserver.org
34  #  #
35  ###############################################################################  ###############################################################################
36    
37  package Meteor::Config;  package Meteor::Config;
38  ###############################################################################  ###############################################################################
39  # Configuration  # Configuration
40  ###############################################################################  ###############################################################################
41                    
42          use strict;          use strict;
43                    
44          our @DEFAULTS=(          our @DEFAULTS=(
45  'Configuration file location on disk (if any)',  'Template for each line in channelinfo',
46          ConfigFileLocation              => '/etc/meteord.conf',          ChannelInfoTemplate             => '<script>ch("~name~", ~lastMsgID~);</script>\r\n',
47    
48  'IP address for controller server (leave empty for all local addresses)',  'Configuration file location on disk (if any)',
49          ControllerIP                    => '',          ConfigFileLocation              => '/etc/meteord.conf',
50    
51  'Port number for controller connections',  'IP address for controller server (leave empty for all local addresses)',
52          ControllerPort                  => 4671,          ControllerIP                    => '',
53    
54  'Controller Shutdown message, sent when the controller server shuts down (leave empty for no message)',  'Port number for controller connections',
55          ControllerShutdownMsg   => '',          ControllerPort                  => 4671,
56    
57  'Debug Flag, when set daemon will run in foreground and emit debug messages',  'Controller Shutdown message, sent when the controller server shuts down (leave empty for no message)',
58          Debug                                   => 0,          ControllerShutdownMsg   => '',
59            
60  'Name of index file to serve when a directory is requested from the static file web server',  'Debug Flag, when set daemon will run in foreground and emit debug messages',
61          DirectoryIndex  => 'index.html',          Debug                                   => 0,
62            
63  'Header to be served with static documents. ~server~ and ~status~ will be replaced by the appropriate values',  'Name of index file to serve when a directory is requested from the static file web server',
64          DocumentHeaderTemplate                  => 'HTTP/1.1 ~status~\r\nServer: ~server~\r\nContent-Type: text/html; charset=utf-8\r\n\r\n',          DirectoryIndex  => 'index.html',
65    
66  'Header template, ~server~, ~servertime~ and ~status~ will be replaced by the appropriate values.  **NOTE**: It is possible to define more than one HeaderTemplate by appending a number at the end, for example *HeaderTemplate42*. Clients can request a specific header to be used by adding the parameter template=<number> to their GET request. If *HeaderTemplate<number>* is not found, the system will use the default HeaderTemplate (no number)',  'Header template, ~server~, ~servertime~ and ~status~ will be replaced by the appropriate values.  **NOTE**: It is possible to define more than one HeaderTemplate by appending a number at the end, for example *HeaderTemplate42*. Clients can request a specific header to be used by adding the parameter template=<number> to their GET request. If *HeaderTemplate<number>* is not found, the system will use the default HeaderTemplate (no number)',
67          HeaderTemplate                  => 'HTTP/1.1 ~status~\r\nServer: ~server~\r\nContent-Type: text/html; charset=utf-8\r\nPragma: no-cache\r\nCache-Control: no-cache, no-store, must-revalidate\r\nExpires: Thu, 1 Jan 1970 00:00:00 GMT\r\n\r\n<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">\r\n<meta http-equiv="Cache-Control" content="no-store">\r\n<meta http-equiv="Cache-Control" content="no-cache">\r\n<meta http-equiv="Pragma" content="no-cache">\r\n<meta http-equiv="Expires" content="Thu, 1 Jan 1970 00:00:00 GMT">\r\n<script type="text/javascript">\r\nwindow.onError = null;\r\nvar domainparts = document.domain.split(".");\r\ndocument.domain = domainparts[domainparts.length-2]+"."+domainparts[domainparts.length-1];\r\nparent.Meteor.register(this);\r\nparent.Meteor.setServerTime(~servertime~);\r\n</script>\r\n</head>\r\n<body onload="r()">\r\n',          HeaderTemplate                  => 'HeaderTemplate HTTP/1.1 ~status~\r\nServer: ~server~\r\nContent-Type: text/html; charset=utf-8\r\nPragma: no-cache\r\nCache-Control: no-cache, no-store, must-revalidate\r\nExpires: Thu, 1 Jan 1970 00:00:00 GMT\r\n\r\n',
68    
69  'Print out this help message',  'Print out this help message',
70          Help                                    => '',          Help                                    => '',
71    
72  'Maximum age of a message in seconds',  'Format to use for timestamps in syslog: unix or human',
73          MaxMessageAge                   => 7200,          LogTimeFormat                   => 'human',
74    
75  'Maximum number of messages to send to a subscriber before forcing their connection to close. Use 0 to disable',  'Maximum age of a message in seconds',
76          MaxMessages                             => 0,          MaxMessageAge                   => 7200,
77    
78  'Maximum number of stored messages per channel',  'Maximum number of messages to send to a subscriber before forcing their connection to close. Use 0 to disable',
79          MaxMessagesPerChannel   => 250,          MaxMessages                             => 0,
80    
81  'Maximum duration in seconds for a subscriber connection to exist before forcing a it to close. Note that the server checks for expired connections in 60 second intervals, so small changes to this value will not have much of an effect. Use 0 to disable',  'Maximum number of stored messages per channel',
82          MaxTime                                 => 0,          MaxMessagesPerChannel   => 250,
83    
84  'Message template, ~text~, ~id~ and ~timestamp~ will be replaced by the appropriate values',  'Maximum duration in seconds for a subscriber connection to exist before forcing a it to close. Note that the server checks for expired connections in 60 second intervals, so small changes to this value will not have much of an effect. Use 0 to disable',
85          MessageTemplate                 => '<script>p(~id~,"~text~");</script>\r\n',          MaxTime                                 => 0,
86    
87  'Interval at which PingMessage is sent to all persistent and identified subscriber connections (ie those including id=someuniqueidentifier in their request, and not specifying persist=0). Must be at least 3 if set higher than zero. Set to zero to disable.',  'Message template, ~text~, ~id~, ~channel~ and ~timestamp~ will be replaced by the appropriate values',
88          PingInterval                    => 5,          MessageTemplate                 => '<script>p(~id~,"~channel~","~text~");</script>\r\n',
89    
90  'Message to be sent to all persistent and identified subscriber connections (see above) every PingInterval seconds',  'Interval at which PingMessage is sent to all persistent subscriber connections. Must be at least 3 if set higher than zero. Set to zero to disable.',
91          PingMessage                             => '<script>p(-1,"");</script>\r\n',          PingInterval                    => 5,
92    
93  'IP address for subscriber server (leave empty for all local addresses)',  'Persistence of a connection.',
94          SubscriberIP                    => '',          Persist                                 => 0,
95    
96  'Port number for subscriber connections',  'Message to be sent to all persistent and identified subscriber connections (see above) every PingInterval seconds',
97          SubscriberPort                  => 4670,          PingMessage                             => '<script>p(-1,"");</script>\r\n',
98    
99  'Subscriber Shutdown message, sent when the subscriber server shuts down (leave empty for no message)',  'IP address for subscriber server (leave empty for all local addresses)',
100          SubscriberShutdownMsg           => '<script>eof();</script>\r\n',          SubscriberIP                    => '',
101    
102  'An absolute filesystem path, to be used as the document root for Meteor\'s static file web server. If left empty, no documents will be served.',  'Port number for subscriber connections',
103          SubscriberDocumentRoot  => '/usr/local/meteor/public_html',          SubscriberPort                  => 4670,
104    
105  'Since Meteor is capable of serving static pages from a document root as well as streaming events to subscribers, this paramter is used to specify the URI at which the event server can be reached. If set to the root, Meteor will lose the ability to serve static pages.',  'Subscriber Shutdown message, sent when the subscriber server shuts down (leave empty for no message)',
106          SubscriberDynamicPageAddress    => '/push',          SubscriberShutdownMsg           => '<script>eof();</script>\r\n',
107    
108  'The syslog facility to use',  'An absolute filesystem path, to be used as the document root for Meteor\'s static file web server. If left empty, no documents will be served.',
109          SyslogFacility                  => 'daemon',          SubscriberDocumentRoot  => '/usr/local/meteor/public_html',
110          );  
111            'Since Meteor is capable of serving static pages from a document root as well as streaming events to subscribers, this parameter is used to specify the URI at which the event server can be reached. If set to the root, Meteor will lose the ability to serve static pages.',
112          our %ConfigFileData=();          SubscriberDynamicPageAddress    => '/push',
113          our %CommandLine=();  
114          our %Defaults=();  'The syslog facility to use',
115          our %ExtraKeys=();          SyslogFacility                  => 'daemon',
116                    
117          for(my $i=0;$i<scalar(@DEFAULTS);$i+=3)  'IP address for udp server (leave empty for all local addresses)',
118          {          UDPIP                                   => '',
119                  $Defaults{$DEFAULTS[$i+1]}=$DEFAULTS[$i+2];          
120          }  'Port number for udp connections, set to 0 to disable',
121            UDPPort                                 => 0,
122  ###############################################################################  
123  # Class methods          );
124  ###############################################################################          
125  sub updateConfig {          our %ConfigFileData=();
126          my $class=shift;          our %CommandLine=();
127                    our %Defaults=();
128          %::CONF=();          our %Modes=();
129                    
130          my $debug=$class->valueForKey('Debug');          for(my $i=0;$i<scalar(@DEFAULTS);$i+=3)
131                    {
132          print STDERR '-'x79 ."\nParamters:\nSource \tName and Value\n".'-'x79 ."\n" if($debug);                  $Defaults{$DEFAULTS[$i+1]}=$DEFAULTS[$i+2];
133                    }
134          my @keys=();  
135            ###############################################################################
136          for(my $i=0;$i<scalar(@DEFAULTS);$i+=3)  # Class methods
137          {  ###############################################################################
138                  next if($DEFAULTS[$i+1] eq 'Help');  sub updateConfig {
139                  push(@keys,$DEFAULTS[$i+1]);          my $class=shift;
140          }          
141          push(@keys,keys %ExtraKeys);          %::CONF=();
142                    
143          foreach my $key (@keys)          my $debug=$class->valueForKey('Debug');
144          {                        
145                  if(exists($CommandLine{$key}))          print STDERR '-'x79 ."\nMeteor server v$::VERSION (release date: $::RELEASE_DATE)\r\nLicensed under the terms of the GNU General Public Licence (2.0)\n".'-'x79 ."\n" if($debug);
146                  {          
147                          print STDERR "CmdLine" if($debug);          my @keys=();
148                          $::CONF{$key}=$CommandLine{$key};          
149                  }          for(my $i=0;$i<scalar(@DEFAULTS);$i+=3)
150                  elsif(exists($ConfigFileData{$key}))          {
151                  {                  next if($DEFAULTS[$i+1] eq 'Help');
152                          print STDERR "CnfFile" if($debug);                  push(@keys,$DEFAULTS[$i+1]);
153                          $::CONF{$key}=$ConfigFileData{$key};          }
154                  }          
155                  elsif(exists($Defaults{$key}))          foreach my $mode ('',keys %Modes)
156                  {          {
157                          print STDERR "Default" if($debug);                  print STDERR ($mode) ? "\r\n$mode:\r\n" : "\r\nDefaults:\r\n" if($debug);
158                          $::CONF{$key}=$Defaults{$key};                  foreach my $baseKey (@keys)
159                  }                  {
160                                            my $foundValue=0;
161                  print STDERR "\t$key\t$::CONF{$key}\n" if($debug);                          my $key=$baseKey.$mode;
162                                            
163                  # Take care of escapes                          if(exists($CommandLine{$key}))
164                  $::CONF{$key}=~s/\\(.)/                          {
165                          if($1 eq 'r')                                  print STDERR "CmdLine" if($debug);
166                          {                                  $::CONF{$key}=$CommandLine{$key};
167                                  "\r";                                  $foundValue=1;
168                          }                          }
169                          elsif($1 eq 'n')                          elsif(exists($ConfigFileData{$key}))
170                          {                          {
171                                  "\n";                                  print STDERR "CnfFile" if($debug);
172                          }                                  $::CONF{$key}=$ConfigFileData{$key};
173                          elsif($1 eq 's')                                  $foundValue=1;
174                          {                          }
175                                  ' ';                          elsif(exists($Defaults{$key}))
176                          }                          {
177                          elsif($1 eq 't')                                  print STDERR "Default" if($debug);
178                          {                                  $::CONF{$key}=$Defaults{$key};
179                                  "\t";                                  $foundValue=1;
180                          }                          }
181                          else                          
182                          {                          next unless($foundValue);
183                                  $1;                          
184                          }                          print STDERR "\t$baseKey\t$::CONF{$key}\n" if($debug);
185                  /gex;                          
186          }                          # Take care of escapes
187                                    $::CONF{$key}=~s/\\(.)/
188          print STDERR '-'x79 ."\n" if($debug);                                  if($1 eq 'r') {
189  }                                          "\r";
190                                    } elsif($1 eq 'n') {
191  sub valueForKey {                                          "\n";
192          my $class=shift;                                  } elsif($1 eq 's') {
193          my $key=shift;                                          ' ';
194                                            } elsif($1 eq 't') {
195          return $CommandLine{$key} if(exists($CommandLine{$key}));                                          "\t";
196          return $ConfigFileData{$key} if(exists($ConfigFileData{$key}));                                  } elsif($1 eq '0') {
197                                                    "\0";
198          $Defaults{$key};                                  } else {
199  }                                          $1;
200                                    }
201  sub setCommandLineParameters {                          /gex;
202          my $class=shift;                  }
203                    }
204          while(my $cnt=scalar(@_))          print STDERR '-'x79 ."\n" if($debug);
205          {  }
206                  my $k=shift(@_);  
207                  &usage("'$k' invalid") unless($k=~s/^\-(?=.+)//);  sub valueForKey {
208                            my $class=shift;
209                  $k='Debug' if($k eq 'd');          my $key=shift;
210                            
211                  my $key=undef;          return $CommandLine{$key} if(exists($CommandLine{$key}));
212                  my $kl=length($k);          return $ConfigFileData{$key} if(exists($ConfigFileData{$key}));
213                  my $kOrig=$k;          
214                  $k=lc($k);          $Defaults{$key};
215                    }
216                  for(my $i=0;$i<scalar(@DEFAULTS);$i+=3)  
217                  {  sub setCommandLineParameters {
218                          my $p=$DEFAULTS[$i+1];          my $class=shift;
219                          my $pl=length($p);          
220                                    #
221                          next if($kl>$pl);          # Quick check if we should show the version, if so ignore everything else
222                                    # Accept -v, -version, and everything in between
223                          #print "$kl $pl $k $p\n";          #
224                                    foreach my $p (@_)
225                          if($kl==$pl && $k eq lc($p))          {
226                          {                  if(index($p,'-v')==0 && index('-version',$p)==0)
227                                  $key=$p;                  {
228                                  last;                          print "$::PGM $::VERSION\n";
229                          }                          exit(0);
230                                            }
231                          my $ps=lc(substr($p,0,$kl));          }
232                                    
233                          if($k eq $ps)          while(my $cnt=scalar(@_))
234                          {          {
235                                  if(defined($key))                  my $k=shift(@_);
236                                  {                  &usage("'$k' invalid") unless($k=~s/^\-(?=.+)//);
237                                          &usage("Ambigous parameter name '$kOrig'");                  
238                                  }                  $k='Debug' if($k eq 'd');
239                                  $key=$p;                  
240                          }                  my $mode='';
241                  }                  
242                                    if($k=~s/(\.(.+))$//)
243                  if($k=~/^HeaderTemplate(\d+)$/i)                  {
244                  {                          $mode=$2;
245                          $key="HeaderTemplate$1";                          $Modes{$mode}=1;
246                          $ExtraKeys{$key}=1;                  }
247                  }                  
248                                            my $key=undef;
249                  &usage("Unknown parameter name '$kOrig'") unless(defined($key));                  my $kl=length($k);
250                                    my $kOrig=$k;
251                  &usage() if($key eq 'Help');                  $k=lc($k);
252                                    
253                  #print "$kOrig: $key\n";                  for(my $i=0;$i<scalar(@DEFAULTS);$i+=3)
254                                    {
255                  $CommandLine{$key}=1;                          my $p=$DEFAULTS[$i+1];
256                                            my $pl=length($p);
257                  if($cnt>1 && $_[0]!~/^\-(?!\-)/)                          
258                  {                          next if($kl>$pl);
259                          my $param=shift;                          
260                          $param=~s/^\-\-/\-/;                          #print "$kl $pl $k $p\n";
261                          $CommandLine{$key}=$param;                          
262                  }                          if($kl==$pl && $k eq lc($p))
263          }                          {
264                                            $key=$p;
265          $class->readConfig();                                  last;
266                                    }
267          $class->updateConfig();                          
268  }                          my $ps=lc(substr($p,0,$kl));
269                            
270  sub readConfig {                          if($k eq $ps)
271          my $class=shift;                          {
272                                            if(defined($key))
273          %ConfigFileData=();                                  {
274                                                    &usage("Ambigous parameter name '$kOrig'");
275          my $path=$class->valueForKey('ConfigFileLocation');                                  }
276          return unless(defined($path) && -f $path);                                  $key=$p;
277                                    }
278          open(CONFIG,"$path") or &usage("Config file '$path' for read: $!\n");                  }
279          while(<CONFIG>)                          
280          {                  &usage("Unknown parameter name '$kOrig'") unless(defined($key));
281                  next if(/^\s*#/);                  
282                  next if(/^\s*$/);                  &usage() if($key eq 'Help');
283                                    
284                  s/[\r\n]*$//;                  #print "$kOrig: $key\n";
285                                    
286                  unless(/^(\S+)\s*(.*)/)                  $CommandLine{"$key$mode"}=1;
287                  {                  
288                          &usage("Invalid configuration file parameter line '$_'");                  if($cnt>1 && $_[0]!~/^\-(?!\-)/)
289                  }                  {
290                                            my $param=shift;
291                  my $key=$1;                          $param=~s/^\-\-/\-/;
292                  my $val=$2;                          $CommandLine{"$key$mode"}=$param;
293                  $val='' unless(defined($val));                  }
294                            }
295                  if($key=~/^HeaderTemplate\d+$/)          
296                  {          $class->readConfig();
297                          $ExtraKeys{$key}=1;          
298                  }          $class->updateConfig();
299                  else  }
300                  {  
301                          unless(exists($Defaults{$key}))  sub readConfig {
302                          {          my $class=shift;
303                                  &usage("Unknown configuration file parameter name '$key'");          
304                          }          %ConfigFileData=();
305                          if($key eq 'ConfigFileLocation')          
306                          {          my $path=$class->valueForKey('ConfigFileLocation');
307                                  &usage("'ConfigFileLocation' parameter not allowed in configuration file!");          return unless(defined($path) && -f $path);
308                          }          
309                  }          my $mode='';
310                            
311                  $val=~s/^--/-/;          open(CONFIG,"$path") or &usage("Config file '$path' for read: $!\n");
312                            while(<CONFIG>)
313                  $ConfigFileData{$key}=$val;          {
314          }                  next if(/^\s*#/);
315          close(CONFIG);                  next if(/^\s*$/);
316  }                  
317                    s/[\r\n]*$//;
318  sub usage {                  
319          my $msg=shift || '';                  if(/^\s*\[\s*([^\]\s]+)\s*\]\s*$/)
320                            {
321          if($msg) {                          $Modes{$1}=1;
322                  print STDERR <<"EOT";                          $mode = $1;
323  $msg;                          next;
324  For further help type $::PGM -help                  }
325  or consult docs at http://www.meteorserver.org/                  
326  EOT                  unless(/^(\S+)\s*(.*)/)
327                    {
328          } else {                          &usage("Invalid configuration file parameter line '$_'");
329                    }
330                            
331                  print STDERR <<"EOT";                  my $key=$1;
332                    my $val=$2;
333  Meteor server v1.0 (release date: 1 Dec 2006)                  $val='' unless(defined($val));
334  Licensed under the terms of the GNU General Public Licence (2.0)                  
335                    unless(exists($Defaults{$key}))
336  Usage:                  {
337                            &usage("Unknown configuration file parameter name '$key$mode'");
338          $::PGM [-parameter [value] [-parameter [value]...]]                  }
339                    if($key eq 'ConfigFileLocation')
340  Accepted command-line parameters:                  {
341                            &usage("'ConfigFileLocation' parameter not allowed in configuration file!");
342  EOT                  }
343                            
344                  for(my $i=0;$i<scalar(@DEFAULTS);$i+=3)                  $val=~s/^--/-/;
345                  {                  
346                          print STDERR "-$DEFAULTS[$i+1]\n$DEFAULTS[$i].\n\n";                  $ConfigFileData{"$key$mode"}=$val;
347                  }          }
348                            close(CONFIG);
349                  print STDERR <<"EOT";    }
350            
351  Any of the parameters listed above can also be configured in the  sub usage {
352  configuration file. The default location for this file is:          my $msg=shift || '';
353            
354          $Defaults{'ConfigFileLocation'}          if($msg) {
355                    print STDERR <<"EOT";
356  For more information and complete documentation, see the Meteor  $msg;
357  website at http://www.meteorserver.org/  For further help type $::PGM -help
358  EOT  or consult docs at http://meteorserver.org/
359    EOT
360          }  
361          exit(1);          } else {
362  }  
363            
364  1;                  print STDERR <<"EOT";
365    
366    Meteor server v$::VERSION (release date: $::RELEASE_DATE)
367    Licensed under the terms of the GNU General Public Licence (2.0)
368    
369    Usage:
370    
371            $::PGM [-parameter [value] [-parameter [value]...]]
372    
373    Accepted command-line parameters:
374    
375    EOT
376            
377                    for(my $i=0;$i<scalar(@DEFAULTS);$i+=3)
378                    {
379                            print STDERR "-$DEFAULTS[$i+1]\n$DEFAULTS[$i].\n\n";
380                    }
381                    
382                    print STDERR <<"EOT";  
383            
384    Any of the parameters listed above can also be configured in the
385    configuration file. The default location for this file is:
386    
387            $Defaults{'ConfigFileLocation'}
388    
389    For more information and complete documentation, see the Meteor
390    website at http://meteorserver.org/
391    EOT
392    
393            }
394            exit(1);
395    }
396    
397    1;
398  ############################################################################EOF  ############################################################################EOF

Legend:
Removed from v.9  
changed lines
  Added in v.50

  ViewVC Help
Powered by ViewVC 1.1.26