Alias: Removed the address group `*', which meant everyone on the system.
[mmh] / sbr / mts.c
index 2830bb7..ced0cf7 100644 (file)
--- a/sbr/mts.c
+++ b/sbr/mts.c
@@ -52,14 +52,6 @@ static char* masquerade = "";
 */
 char *maildelivery = NMHETCDIR"/maildelivery";
 
-
-/*
-** Aliasing Facility (doesn't belong here)
-*/
-int Everyone = NOTOK;
-static char *everyone = "-1";
-char *NoShell = "";
-
 /*
 ** Customize the MTS settings for nmh by adjusting
 ** the file mts.conf in the nmh etc directory.
@@ -73,8 +65,6 @@ struct bind {
 static struct bind binds[] = {
        { "masquerade", &masquerade },
        { "maildelivery", &maildelivery },
-       { "everyone", &everyone },
-       { "noshell", &NoShell },
        { NULL, NULL }
 };
 
@@ -103,8 +93,6 @@ mts_init(char *name)
                fclose(fp);
        }
 
-       Everyone = atoi(everyone);
-
        if (strstr(masquerade, "draft_from") != NULL)
                draft_from_masquerading = TRUE;