]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/postfix/files/main.cf_2.0
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / postfix / files / main.cf_2.0
1 #!/bin/sh
2 cat <<EOF
3 # Configure your domain and accounts
4 mydomain=sample.com
5
6 virtual_mailbox_domains = sample.com, other.net
7 virtual_mailbox_maps = hash:/etc/postfix/virtual
8 virtual_alias_maps = hash:/etc/postfix/virtual_alias
9
10
11 # You'll start with the following lines for maildir storage
12 virtual_mailbox_base = /var/spool/vmail
13 virtual_uid_maps = static:`grep vmail /etc/passwd | cut -d ":" -f 3`
14 virtual_gid_maps = static:`grep vmail /etc/passwd | cut -d ":" -f 4`
15
16
17 # You'll start with the following lines for IMAP storage
18 #virtual_transport = lmtp:unix:/var/lib/cyrus/socket/lmtp
19
20
21 # General stuff here again
22 config_directory = /etc/postfix
23 sample_directory = /etc/postfix
24 queue_directory = /var/spool/postfix
25 mail_spool_directory = /var/spool/mail
26 readme_directory = no
27 command_directory = /usr/sbin
28 daemon_directory = /usr/libexec/postfix
29 mail_owner = postfix
30 setgid_group = postdrop
31 mydestination =
32 unknown_local_recipient_reject_code = 450
33 mynetworks_style = host
34 debug_peer_level = 2
35 sendmail_path = /usr/sbin/sendmail
36 newaliases_path = /usr/bin/newaliases
37 mailq_path = /usr/bin/mailq
38 EOF