Removed the last masquerading type: username_extension.
[mmh] / sbr / mts.c
index 313cbbc..503ec3c 100644 (file)
--- a/sbr/mts.c
+++ b/sbr/mts.c
@@ -41,10 +41,6 @@ static char *mtsconf = NMHETCDIR"/mts.conf";
 static char username[BUFSIZ];
 static char fullname[BUFSIZ];
 
-/* Variables for username masquerading: */
-boolean  username_extension_masquerading = FALSE;  /* " from addrsbr.c */
-static char* masquerade = "";
-
 /*
 ** Global MailDelivery file
 */
@@ -61,7 +57,6 @@ struct bind {
 };
 
 static struct bind binds[] = {
-       { "masquerade", &masquerade },
        { "maildelivery", &maildelivery },
        { NULL, NULL }
 };
@@ -90,9 +85,6 @@ mts_init(char *name)
                mts_read_conf_file(fp);
                fclose(fp);
        }
-
-       if (strstr(masquerade, "username_extension") != NULL)
-               username_extension_masquerading = TRUE;
 }