diff options
author | ccsmart <ccsmart@smartpal.de> | 2005-08-07 14:22:13 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-07 14:22:13 +0000 |
commit | 395adae982d620a129b790244eea937ac5fae697 (patch) | |
tree | 9c35734eb4175c0548a3dede04f4d9e07f700c47 /packages/postfix | |
parent | d2c226306e5fd4695677b55b364a540b112c689b (diff) |
Add LMTP transport for Cyrus IMAP.
Diffstat (limited to 'packages/postfix')
-rw-r--r-- | packages/postfix/files/main.cf_2.0 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/postfix/files/main.cf_2.0 b/packages/postfix/files/main.cf_2.0 index 1c50b4ae00..002f681217 100644 --- a/packages/postfix/files/main.cf_2.0 +++ b/packages/postfix/files/main.cf_2.0 @@ -1,19 +1,24 @@ #!/bin/sh cat <<EOF +# Configure your domain and accounts mydomain=sample.com virtual_mailbox_domains = sample.com, other.net virtual_mailbox_maps = hash:/etc/postfix/virtual virtual_alias_maps = hash:/etc/postfix/virtual_alias + # You'll start with the following lines for maildir storage virtual_mailbox_base = /var/spool/vmail virtual_uid_maps = static:`grep vmail /etc/passwd | cut -d ":" -f 3` virtual_gid_maps = static:`grep vmail /etc/passwd | cut -d ":" -f 4` + # You'll start with the following lines for IMAP storage +#virtual_transport = lmtp:unix:/var/lib/cyrus/socket/lmtp +# General stuff here again config_directory = /etc/postfix sample_directory = /etc/postfix queue_directory = /var/spool/postfix |