-
Never done it myself, you could try a search for "sudo setup <your linux distro>".
2009-10-25 17:23:14 UTC in Postfix Admin
-
The usual problems are permissions and environment (particularly PATH). In this case it's most likely permissions since the commands you are using are likely to be in the default path - have you set up sudo correctly ?.
2009-10-25 15:18:46 UTC in Postfix Admin
-
The docs would be a good start - installed in /usr/share/doc/postfixadmin on a Debian system. There's a document in there that gives the content for all the SQL command files, and the Postfix config options to use them.
2009-09-28 20:24:51 UTC in Postfix Admin
-
Well the third one includes the whole message body in the log - a bit overkill for just an info level log. And the other two I wanted slightly different wording.
I wasn't certain that debug included info - so I just duplicated the lines and edited them a bit. I won't be offended in the least if you do something totally different ;-)
I guess the next bit will be to try and figure out how to...
2009-09-26 18:48:47 UTC in Postfix Admin
-
diff -u vacation.pl-orig vacation.pl
--- vacation.pl-orig 2009-09-25 14:18:16.000000000 +0100
+++ vacation.pl 2009-09-18 15:21:04.000000000 +0100
@@ -188,7 +188,7 @@
if($syslog == 1) {
my $syslog_appender = Log::Log4perl::Appender->new(
'Log::Dispatch::Syslog',
- Facility => 'user',
+ Facility =&.
2009-09-25 13:21:30 UTC in Postfix Admin
-
It is Postfix that does the delivery to maildir - so domain aliases in PFA will do what you want. Once it's in the maildir, then it's no longer anything to do with Postfix, and it's down to whatever you use to retrieve it to handle user logins (Dovecot, Courier-[pop|imap], Squirrelmail, whatever).
It's important to get that distinction clear.
2009-09-25 06:48:55 UTC in Postfix Admin
-
What version of PFA are you using ?
The latest does support alias domains as you want - as madtrek says, just create one domain with mailboxes, and create the others as alias domains.
To get logins by user (without domain part) you'll need to fiddle with whatever webmail/POP/IMAP server you use - Postfix is not involved at that stage. Obviously it means you lose the ability to host other...
2009-09-24 20:35:34 UTC in Postfix Admin
-
I would adjust the postfix-sql scripts first - otherwise you'll start losing (bouncing) inbound emails between converting the domain aliases and changing the scripts.
2009-09-21 14:38:49 UTC in Postfix Admin
-
Oh yes, I also changed the log facility to mail in line 191.
2009-09-18 14:29:00 UTC in Postfix Admin
-
There seems to be almost no logging enabled by default at level info. I like to have something logged so it's possible to see later what did/didn't happen.
To this end, I've edited vacation.pl :
$ diff vacation.pl-orig vacation.pl
261a262
\> $logger->info("Notification interval elapsed, sending vacation reply: From: $from To:$to");
274a276
\>.
2009-09-18 14:27:28 UTC in Postfix Admin