Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen Revision Vorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
Letzte ÜberarbeitungBeide Seiten der Revision
centos:mail_c7:horde_3 [04.05.2015 17:18. ] – [Konfiguration des Backend-/IMAP-Server] djangocentos:mail_c7:horde_3 [04.12.2015 20:52. ] – Horde 5 WebMail Applikation: IMP unter CentOS 7.x django
Zeile 949: Zeile 949:
 Als erstes deaktivieren wir den ersten Standardeintrag und ergänzen dann den Eintrag für die Anbindung an unseren Dovecot-IMAP-Server. Als erstes deaktivieren wir den ersten Standardeintrag und ergänzen dann den Eintrag für die Anbindung an unseren Dovecot-IMAP-Server.
    # vim /usr/share/horde/imp/config/backends.local.php    # vim /usr/share/horde/imp/config/backends.local.php
-<file php /usr/share/horde/imp/config/backends.local.php><?php+<file php /usr/share/horde/imp/config/backends.local.php>
 /** /**
  * This file specifies which mail servers IMP can login to.  * This file specifies which mail servers IMP can login to.
Zeile 1292: Zeile 1292:
  * timeout: (integer) Set the server timeout (in seconds).  * timeout: (integer) Set the server timeout (in seconds).
  */  */
 +
 +/* Example configurations: */
  
 // IMAP server // IMAP server
-// ENABLED by default; will connect to IMAP port on local server +$servers['imap'] = array( 
-// Django : 2014-09-11 +    // ENABLED by default; will connect to IMAP port on local server 
-// default: 'disabled' => false, +    // Django : 2014-09-11 
-$servers['imap']['disabled'= true;+    // default: 'disabled' => false, 
 +    'disabled' => true, 
 +    'name' => 'IMAP Server', 
 +    'hostspec' => 'localhost', 
 +    'hordeauth' => false, 
 +    'protocol' => 'imap', 
 +    'port' => 143, 
 +    // Plaintext logins are disabled by default on IMAP servers (see RFC 3501 
 +    // [6.2.3]), so TLS is the only guaranteed authentication available by 
 +    // default. 
 +    'secure' => 'tls', 
 +); 
 + 
 + 
 +// POP3 server 
 +$servers['pop'= array( 
 +    // Disabled by default 
 +    'disabled' =true
 +    'name' => 'POP3 Server', 
 +    'hostspec' => 'localhost', 
 +    'hordeauth' => false, 
 +    'protocol' => 'pop3', 
 +    'port' => 110, 
 +    // Default to secure TLS authentication by default (see RFC 2595 [4]). 
 +    'secure' => 'tls', 
 +); 
  
 // Advanced example - mainly here to demonstrate the syntax of all available // Advanced example - mainly here to demonstrate the syntax of all available
 // options. // options.
-// Disabled by default +$servers['advanced'] = array( 
-// Django : 2014-09-11 +    // Disabled by default 
-// default: 'disabled' => true, +    // Django : 2014-09-11 
-$servers['advanced']['disabled'= false; +    // default: 'disabled' => true, 
-$servers['advanced']['name'= 'Advanced Dovecot IMAP Server'; +    'disabled' =false, 
-$servers['advanced']['hostspec'= 'imap.dmz.nausch.org'; +    // default: 'name=> 'Advanced IMAP Server', 
-$servers['advanced']['hordeauth'= 'full' +    'name' ='Advanced Dovecot IMAP Server', 
-$servers['advanced']['protocol'= 'imap'; +    // default: 'hostspec=> 'localhost', 
-$servers['advanced']['port'= 143; +    'hostspec' ='imap.dmz.nausch.org', 
-$servers['advanced']['secure'= 'tls'; +    // default: 'hordeauth=> false, 
-$servers['advanced']['maildomain'= 'nausch.org'; +    'hordeauth' ='full', 
-$servers['advanced']['smtp']['host'= 'vml000087.dmz.nausch.org'; +    'protocol' ='imap', 
-$servers['advanced']['smtp']['localhost'= 'vml000097.dmz.nausch.org'; +    'port' =143, 
-$servers['advanced']['smtp']['port'25; +    'secure' ='tls', 
-$servers['advanced']['acl'= true; +    // default: 'maildomain=> '', 
-$servers['advanced']['cache'= false; +    'maildomain' ='nausch.org', 
-$servers['advanced']['quota']['driver'= 'imap'; +    'smtp=> array( 
-$servers['advanced']['quota']['params']['hide_when_unlimited'= false; +    //    'auth=> true, 
-$servers['advanced']['quota']['params']['unit'= 'MB'; +    //    'debug' => false, 
-$servers['advanced']['quota']['params']['format']['short'= 'Quota Status: %.0f%% bei einer Belegung von %.0f %s'; +    //    'horde_auth' => false, 
-$servers['advanced']['autocreate_special'=> false;+    //    'host' ='smtp.example.com', 
 +    //    'lmtp' => false, 
 +    //    'localhost' => 'localhost', 
 +    //    'password' => null, 
 +    //    /* Mail from a MUA SHOULD be sent via the mail submission port (587) 
 +    //     * rather than the MTA port (25)(See RFC 6409/STD 72). 
 +    //     * Note that mail submission REQUIRES some method of authentication 
 +    //     * (whether explicit user/password credentials or configuring the 
 +    //     * mail submission agent to automatically authenticate this host 
 +    //     * based on the network location). */ 
 +    //    'port' => 587, 
 +    //    'username=> null 
 +    //    default: unset 
 +    'host' => 'smtp.dmz.nausch.org'
 +    'localhost' ='vml000097.dmz.nausch.org', 
 +    'port=> 25, 
 +    ), 
 +    'spam=> array( 
 +        // 'innocent' => array( 
 +        //     'display=> true, 
 +        // 
 +        //     // Email reporting driver 
 +        //     'email' => null, 
 +        //     'email_format' => 'digest', 
 +        // 
 +        //     // Null reporting driver 
 +        //     'null' => true, 
 +        // 
 +        //     // Program reporting driver 
 +        //     'program=> null 
 +        // ), 
 +        // 'spam' => array( 
 +        //     'display' => false, 
 +        // 
 +        //     // Email reporting driver 
 +        //     'email=> null, 
 +        //     'email_format=> 'digest', 
 +        // 
 +        //     // Null reporting driver 
 +        //     'null' => true, 
 +        // 
 +        //     // Program reporting driver 
 +        //     'program=> null 
 +        // ), 
 +        // // It is possible to directly define additional spam drivers. 
 +        // // The 'driversarray should contain a list of driver objects 
 +        // // (these classes must implement the IMP_Spam_Base class). 
 +        // 'drivers=> array( 
 +        //     new IMP_Example_Spam_Driver() 
 +        // ) 
 +    ), 
 +    'admin=> array( 
 +    //     'user' => 'cyrus', 
 +    //     'password' => 'cyrus_pass', 
 +    //     'userhierarchy' => 'user.' 
 +    ), 
 +    'acl' => true, 
 +    'cache' => false, 
 +    // 'debug=> '/tmp/imp_imap.log', 
 +    // 'debug_raw' => false, 
 +    'quota' => array( 
 +        'driver' => 'imap', 
 +        'params' => array( 
 +            // default : 'hide_when_unlimited' => true, 
 +            'hide_when_unlimited=> false, 
 +            // default : 'unit=> 'MB' 
 +            'unit=> 'MB', 
 +            // default : unset 
 +            'format' => array('short' ='Quota Status: %.0f%% bei einer Belegung von %.0f %s') 
 +        ) 
 +    ), 
 +    'special_mboxes=> array( 
 +    //     IMP_Mailbox::MBOX_DRAFTS => 'Drafts', 
 +    //     IMP_Mailbox::MBOX_SENT => 'Sent', 
 +    //     IMP_Mailbox::MBOX_SPAM => 'Spam', 
 +    //     IMP_Mailbox::MBOX_TEMPLATES => 'Templates', 
 +    //     IMP_Mailbox::MBOX_TRASH => 'Trash', 
 +    //     IMP_Mailbox::MBOX_USERSPECIAL => array( 
 +    //         'Example' => _("Example Special Mailbox"
 +    //     ) 
 +    ), 
 +    'autocreate_special' => false
 +);
 </file> </file>
  
  • centos/mail_c7/horde_3.txt
  • Zuletzt geändert: 22.07.2019 15:04.
  • von 127.0.0.1