more removal of ignet cruft
authorArt Cancro <ajc@citadel.org>
Fri, 2 Mar 2018 02:47:11 +0000 (21:47 -0500)
committerArt Cancro <ajc@citadel.org>
Fri, 2 Mar 2018 02:47:11 +0000 (21:47 -0500)
citadel/internet_addressing.c
citadel/sysconfig.h

index 02ba8dfe3e0987f764334aadb9fdf8ac0709f1b8..7c9bac07aa3389405dccf4a3c505bbe212a15bed 100644 (file)
@@ -404,14 +404,10 @@ void remove_any_whitespace_to_the_left_or_right_of_at_symbol(char *name)
 int alias(char *name)
 {                              /* process alias and routing info for mail */
        FILE *fp;
-       int a, i;
+       int a;
        char aaa[SIZ], bbb[SIZ];
-       char *ignetcfg = NULL;
-       char *ignetmap = NULL;
        int at = 0;
        char node[64];
-       char testnode[64];
-       char buf[SIZ];
 
        char original_name[256];
        safestrncpy(original_name, name, sizeof original_name);
index de9c6aa8a587502ab6f6cf85be9ab1c5174951c2..871fdd11bb505a8aa06f19709d6b360d7fef7a77 100644 (file)
@@ -2,7 +2,7 @@
  * Tuning of various parameters of the system.
  * Normally you don't want to mess with any of this.
  *
- * Copyright (c) 1987-2017 by the citadel.org team
+ * Copyright (c) 1987-2018 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.
  */
 #define BOUNCESOURCE           "Citadel Mail Delivery Subsystem"
 
-/*
- * This variable defines the amount of network spool data that may be carried
- * in one server transfer command.  For some reason, some networks get hung
- * up on larger packet sizes.  We don't know why.  In any case, never set the
- * packet size higher than 4096 or your server sessions will crash.
- */
-#define IGNET_PACKET_SIZE      4000
-
 /*
  * The names of rooms which are automatically created by the system
  */
@@ -92,7 +84,7 @@
 /*
  * How long (in seconds) to retain message entries in the use table
  */
-#define USETABLE_RETAIN                        864000L         /* 10 days */
+#define USETABLE_RETAIN                864000L         /* 10 days */
 
 /*
  * The size of per-thread stacks.  If set too low, citserver will randomly crash.