Change copyright date in banner to 2015
authorArt Cancro <ajc@uncensored.citadel.org>
Thu, 12 Feb 2015 19:15:14 +0000 (14:15 -0500)
committerArt Cancro <ajc@uncensored.citadel.org>
Thu, 12 Feb 2015 19:15:14 +0000 (14:15 -0500)
citadel/server_main.c
ctdlsalearn/src/main.c
webcit/webserver.c

index 3b1be910d02de6e2dac33d95a454f0725014ffc1..6a7d293fb8ef7cf6265fa3b4e4d044b1d117a339 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * citserver's main() function lives here.
  * 
- * Copyright (c) 1987-2014 by the citadel.org team
+ * Copyright (c) 1987-2015 by the citadel.org team
  *
  * This program is open source software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License version 3.
@@ -154,7 +154,7 @@ int main(int argc, char **argv)
        syslog(LOG_NOTICE,
                "*** Citadel server engine v%d.%02d (build %s) ***",
                (REV_LEVEL/100), (REV_LEVEL%100), svn_revision());
-       syslog(LOG_NOTICE, "Copyright (C) 1987-2014 by the Citadel development team.");
+       syslog(LOG_NOTICE, "Copyright (C) 1987-2015 by the Citadel development team.");
        syslog(LOG_NOTICE, "This program is distributed under the terms of the GNU "
                                        "General Public License.");
        syslog(LOG_NOTICE, " ");
index e8cd282cf203ed405b3254f8c89a19b496d244f0..a1d8495367c4cd5b50cd14d237319f3cbf1839ce 100644 (file)
@@ -116,8 +116,8 @@ int main(int argc, char **argv)
        if (verbose) printf("%s\n", &buf[4]);
 
        if (buf[0] == '2') {
-               do_room(server_socket, "0000000001.spam", "-u spam --spam");
-               do_room(server_socket, "0000000001.ham", "-u spam --ham");
+               do_room(server_socket, "0000000001.spam", "--dbpath /home/spam/.spamassassin --spam");
+               do_room(server_socket, "0000000001.ham", "--dbpath /home/spam/.spamassassin --ham");
        }
 
        sock_puts(server_socket, "QUIT");
index 2f581356ab81eab1c29a8259971ec52b9419c46c..0261d696a285b614692a94c812a466db7f92b213 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1996-2014 by the citadel.org team
+ * Copyright (c) 1996-2015 by the citadel.org team
  *
  * This program is open source software.  You can redistribute it and/or
  * modify it under the terms of the GNU General Public License version 3.
@@ -233,7 +233,7 @@ int main(int argc, char **argv)
 
        /* Tell 'em who's in da house */
        syslog(LOG_NOTICE, "%s", PACKAGE_STRING);
-       syslog(LOG_NOTICE, "Copyright (C) 1996-2014 by the citadel.org team");
+       syslog(LOG_NOTICE, "Copyright (C) 1996-2015 by the citadel.org team");
        syslog(LOG_NOTICE, " ");
        syslog(LOG_NOTICE, "This program is open source software: you can redistribute it and/or");
        syslog(LOG_NOTICE, "modify it under the terms of the GNU General Public License, version 3.");