Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
becki:linux:squirrelmail_tips [2009-12-08 15:42] becki created |
becki:linux:squirrelmail_tips [2009-12-16 08:08] (aktuell) becki |
||
---|---|---|---|
Zeile 6: | Zeile 6: | ||
- [[http://squirrelmail.org/download.php|Download]] and unpack in your web root. | - [[http://squirrelmail.org/download.php|Download]] and unpack in your web root. | ||
- | - Chown to ''root:root'' | + | - Chown to root: ''cd squirrelmail; chown -R root:root'' |
- Chown FXIME to user and group of apache process | - Chown FXIME to user and group of apache process | ||
- | - Create FIXME and FIXME folders in /var/local and make them writeable for to the webserver (chown to user and group of apache process) | + | - Create ''squirrelmail/data/'' and ''squirrelmail/attach/'' folders in ''/var/local/'' and make them writeable for to the webserver (chown to user and group of apache process) |
- FIXME Protect web access to subfolders | - FIXME Protect web access to subfolders | ||
- | ===== Setup == | + | ===== System Configuration == |
+ | |||
+ | Run ''config/conf.pl'': | ||
- Set server name to ''web.de'' | - Set server name to ''web.de'' | ||
- | - Set IMAP server to URL ''imap.web.de'', Port FIXME | + | - Set IMAP server to URL ''imap.web.de'', Port 143 |
- | - Set SMTP server to URL ''smtp.web.de'', Port FIXME | + | - Set SMTP server to URL ''smtp.web.de'', Port 25 |
- | - Optionally set auto logout time FIXME | + | - Map email folders: Draft->Entwurf, Sent->Gesendet Trash->Papierkorb |
- | - FIXME Map email folders: Draft->Entwurf, Sent->Gesendet Trash->Papierkorb | + | - Optionally install the [[http://forum.dreamhosters.com/troubleshooting/5807-Changing-Squirrelmail-Timeout.htm|TimeoutUser plugin]] |
+ | |||
+ | All settings are stored in ''config/config.php''. This is an excerpt with the important settings: | ||
+ | |||
+ | <code php> | ||
+ | $squirrelmail_default_language = 'en_US'; | ||
+ | $default_charset = 'utf-8'; | ||
+ | $domain = 'web.de'; | ||
+ | $imapServerAddress = 'imap.web.de'; | ||
+ | $imapPort = 143; | ||
+ | $useSendmail = false; | ||
+ | $smtpServerAddress = 'smtp.web.de'; | ||
+ | $smtpPort = 25; | ||
+ | $pop_before_smtp = false; | ||
+ | $imap_server_type = 'other'; | ||
+ | $invert_time = false; | ||
+ | $trash_folder = 'Papierkorb'; | ||
+ | $sent_folder = 'Gesendet'; | ||
+ | $draft_folder = 'Entwurf'; | ||
+ | $data_dir = '/var/local/squirrelmail/data/'; | ||
+ | $attachment_dir = '/var/local/squirrelmail/attach/'; | ||
+ | $smtp_auth_mech = 'login'; | ||
+ | $imap_auth_mech = 'login'; | ||
+ | $use_imap_tls = false; | ||
+ | $use_smtp_tls = false; | ||
+ | </code> | ||
+ | |||
+ | More Info [[http://squirrelmail.org/docs/admin/admin-5.html|here]] | ||
- | All settings are stored in FIXME.php | ||
- | | ||
===== Per-User Configuration == | ===== Per-User Configuration == | ||