hi there
i�ve recompilied my qmailadmin to enable that spam filter.
i�ve set up vpopmail to use that filter.
in user�s dir */domain/user/Maildir/ there have to be a file named maildirfilterconfig
to enable filtering by sqwebmail.
so far so god, that works fine.
but if i add a new user by qmailadmin it only creates a .qmail file and not that
maildirfilterconfig i need for sqwerbmail.
so i added a few lines in user.c at the lines 494:
...
........
snprintf(NewBuf, sizeof(NewBuf), "%s/Maildir/maildirfilterconfig", mypw->pw_dir);
fs = fopen(NewBuf, "w+");
fprintf(fs, "%s\n", "MAILDIRFILTER=./mailfilter");
fprintf(fs, "%s\n", "MAILDIR=./Maildir");
fclose(fs);
.........
....
i hoped that qmailadmin will also create that file maildirfilterconfig, but it didn�t.
what do i wrong ?
anyboody any suggestions?
thanx.lines
