Update of /cvsroot/qmailadmin/qmailadmin
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv32706
Modified Files:
Tag: stable-1_2
ChangeLog command.c
Log Message:
Use email address instead of maildir for catchall.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/qmailadmin/qmailadmin/ChangeLog,v
retrieving revision 1.15.2.100
retrieving revision 1.15.2.101
diff -u -d -r1.15.2.100 -r1.15.2.101
--- ChangeLog 30 Dec 2006 01:31:49 -0000 1.15.2.100
+++ ChangeLog 1 Jan 2007 23:17:05 -0000 1.15.2.101
@@ -6,6 +6,7 @@
Tom Collins
- Use function to generate cgi URLs.
- Remove unused AliasType variable.
+ - Use email address instead of maildir for catchall.
1.2.11 - released 29-Dec-06
Index: command.c
===================================================================
RCS file: /cvsroot/qmailadmin/qmailadmin/command.c,v
retrieving revision 1.2.2.8
retrieving revision 1.2.2.9
diff -u -d -r1.2.2.8 -r1.2.2.9
--- command.c 30 Dec 2006 01:31:49 -0000 1.2.2.8
+++ command.c 1 Jan 2007 23:17:06 -0000 1.2.2.9
@@ -304,7 +304,7 @@
if ( (fs = fopen(".qmail-default", "w")) == NULL ) {
snprintf (StatusMessage, sizeof(StatusMessage), "%s", html_text[82]);
} else {
- fprintf(fs, "| %s/bin/vdelivermail '' %s\n", VPOPMAILDIR, pw->pw_dir);
+ fprintf(fs, "| %s/bin/vdelivermail '' %s@%s\n", VPOPMAILDIR, ActionUser, Domain);
fclose(fs);
}
}
|