]> code.citadel.org Git - citadel.git/blobdiff - citadel/control.c
* Changed the comments at the beginning of each file to a consistent format
[citadel.git] / citadel / control.c
index da104026899e722724547a1add38ef94b70afc9a..e9452d4e498c9df8825e9f8aac59b37bc842cc95 100644 (file)
@@ -1,10 +1,8 @@
 /*
- * control.c
+ * $Id$
  *
  * This module handles states which are global to the entire server.
  *
- * $Id$
- *
  */
 
 #include "sysdep.h"
@@ -167,6 +165,7 @@ void cmd_conf(char *argbuf) {
                cprintf("%d\n", config.c_max_workers);
                cprintf("%d\n", config.c_pop3_port);
                cprintf("%d\n", config.c_smtp_port);
+               cprintf("%d\n", config.c_default_filter);
                cprintf("000\n");
                }
 
@@ -250,6 +249,8 @@ void cmd_conf(char *argbuf) {
                                break;
                        case 24: config.c_smtp_port = atoi(buf);
                                break;
+                       case 25: config.c_default_filter = atoi(buf);
+                               break;
                        }
                    ++a;
                    }