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
Nächste ÜberarbeitungBeide Seiten der Revision
centos:mail_c7:horde_8 [28.01.2015 10:00. ] – [Konfiguration des Backend-/IMAP-Server] djangocentos:mail_c7:horde_8 [04.05.2015 16:42. ] – Horde 5 Applikation IMAP Sieve-Filterregeln: Ingo unter CentOS 7.x #hordeproject #CentOS7 django
Zeile 455: Zeile 455:
  
 /* IMAP Example */ /* IMAP Example */
-$backends['imap'] = array( +// ENABLED by default 
-    // ENABLED by default +// Django : 2014-09-12 
-    // Django : 2014-09-12 +// default: 'disabled' => false, 
-    // default: 'disabled' => false, +$backends['imap']['disabled'] = true;
-    'disabled' => true, +
-    'transport' => array( +
-        Ingo::RULE_ALL => array( +
-            'driver' => 'null', +
-            'params' => array(), +
-        ), +
-    ), +
-    'script' => array( +
-        Ingo::RULE_ALL => array( +
-            'driver' => 'imap', +
-            'params' => array(), +
-        ), +
-    ), +
-    'shares' => false +
-); +
- +
-/* Maildrop Example */ +
-$backends['maildrop'= array( +
-    // Disabled by default +
-    'disabled' => true, +
-    'transport' => array( +
-        Ingo::RULE_ALL => array( +
-            'driver' => 'vfs', +
-            'params' => array( +
-                // Hostname of the VFS server +
-                'hostspec' => 'localhost', +
-                // Name of the maildrop config file to write +
-                'filename' => '.mailfilter', +
-                // The path to the .mailfilter filter file, defaults to the +
-                // filters' owner's home directory. +
-                // You can use the following variables: +
-                //   %u = name of the filters' owner +
-                //   %d = domain name of the filters' owner +
-                //   %U = the transport 'username' +
-                // Example: +
-                //   '/data/maildrop/filters/%d/%u' +
-                //   This would be translated into: +
-                //   '/data/maildrop/filters/<filter_owners_domainname>/<filter_owners_username>/.mailfilter' +
-                // 'vfs_path' => '/path/to/maildrop', +
- +
-                // VFS: FTP example +
-                // The VFS driver to use +
-                'vfstype' => 'ftp', +
-                // Port of the VFS server +
-                'port' => 21, +
-                // Specify permissions for uploaded files if necessary: +
-                // 'file_perms' => '0640', +
- +
-                // VFS: SSH2 example +
-                // The VFS driver to use +
-                // 'vfstype' => 'ssh2', +
-                // Port of the VFS server +
-                // 'port' => 22, +
-            ) +
-        ), +
-    ), +
-    'script' => array( +
-        Ingo::RULE_ALL => array( +
-            'driver' => 'maildrop', +
-            'params' => array( +
-                // Any arguments passed to the mailbot command. The -N flag (to +
-                // no include the original, quoted message content has been +
-                // added with Maildrop 2.5.1/Courier 0.65.1. +
-                'mailbotargs' => '-N', +
-                // What path style does the IMAP server use ['mbox'|'maildir']+
-                'path_style' => 'mbox', +
-                // Strip 'INBOX.' from the beginning of folder names in +
-                // generated scripts? +
-                'strip_inbox' => false, +
-                // An array of variables to append to every generated script. +
-                // Use if you need to set up specific environment variables. +
-                'variables' => array( +
-                    // Example for the $PATH variable +
-                    // 'PATH' => '/usr/bin' +
-                ) +
-            ), +
-        ), +
-    ), +
-    'shares' => false +
-); +
- +
-/* Procmail Example */ +
-$backends['procmail'] = array( +
-    // Disabled by default +
-    'disabled' => true+
-    'transport' => array( +
-        Ingo::RULE_ALL => array( +
-            'driver' => 'vfs', +
-            'params' => array( +
-                // Hostname of the VFS server +
-                'hostspec' => 'localhost', +
-                // Name of the procmail config file to write +
-                'filename' => '.procmailrc', +
-                // The path to the .procmailrc filter file, defaults to the +
-                // filters' owner's home directory. +
-                // You can use the following variables: +
-                //   %u = name of the filters' owner +
-                //   %U = the 'username' from above +
-                // Example: +
-                //   '/data/procmail/filters/%u' +
-                //   This would be translated into: +
-                //   '/data/procmail/filters/<filter_owners_username>/.procmailrc' +
-                // 'vfs_path' => '/path/to/procmail', +
- +
-                // If procmail needs an external command for mail delivery, you +
-                // can specify it below. You can also set a prefix for the +
-                // mailbox name +
-                // eg. for /usr/local/sbin/dmail +INBOX +
-                // 'delivery_agent' => '/usr/local/sbin/dmail', +
-                // 'delivery_mailbox_prefix' => '+', +
- +
-                // if the GNU utilities cannot be found in the path +
-                // or have different names, you can specify their location below +
-                // 'date' => '/opt/csw/bin/gdate', +
-                // 'echo' => '/opt/csw/bin/gecho', +
-                // 'ls' => '/opt/csw/bin/gls', +
- +
-                // VFS: FTP example +
-                // The VFS driver to use +
-                'vfstype' => 'ftp', +
-                // Port of the VFS server +
-                'port' => 21, +
- +
-                // VFS: SSH2 example +
-                // The VFS driver to use +
-                // 'vfstype' => 'ssh2', +
-                // Port of the VFS server +
-                // 'port' => 22, +
-            ) +
-        ), +
-    ), +
-    'script' => array( +
-        Ingo::RULE_ALL => array( +
-            'driver' => 'procmail', +
-            'params' => array( +
-                // What path style does the IMAP server use ['mbox'|'maildir']? +
-                'path_style' => 'mbox', +
-                // An array of variables to append to every generated script. +
-                // Use if you need to set up specific environment variables. +
-                'variables' => array( +
-                    // The $DEFAULT variable. If using Maildir, Ingo will use +
-                    // this value as the default unless you explicitly +
-                    // configure otherwise. +
-                    // 'DEFAULT' => '$HOME/Maildir/', +
-                    // The $DEFAULT variable. If using Maildir, Ingo will use +
-                    // this value as the default unless you explicitly +
-                    // configure otherwise. +
-                    // 'MAILDIR' => '$HOME/Maildir', +
-                    // Example for the $PATH variable +
-                    // 'PATH' => '/usr/bin', +
-                    // Example for the $VACATION_DIR variable (used to store +
-                    // vacation files) +
-                    // 'VACATION_DIR' => '$HOME', +
-                ), +
-                // If you need procmail to be called from .forward in the +
-                // user's home directory, set the file and the content below: +
-                // 'forward_file' => '.forward', +
-                // 'forward_string' => '"|/usr/local/bin/procmail"', +
-            ), +
-        ), +
-    ), +
-    'shares' => false +
-);+
  
 /* Sieve Example */ /* Sieve Example */
-$backends['sieve'] = array( +// Disabled by default 
-    // Disabled by default +// Django : 2014-09-12 
-    // Django : 2014-09-12 +// default: 'disabled' => true, 
-    // default: 'disabled' => true, +$backends['sieve']['disabled'= false; 
-    'disabled' =false, +$backends['sieve']['transport'][Ingo::RULE_ALL]['driver'= 'timsieved'; 
-    'transport' => array( +$backends['sieve']['transport'][Ingo::RULE_ALL]['params']['hostspec'= '10.0.0.77'; 
-        Ingo::RULE_ALL => array( +$backends['sieve']['transport'][Ingo::RULE_ALL]['params']['logintype'= 'CRAM-MD5'; 
-            'driver' ='timsieved', +$backends['sieve']['transport'][Ingo::RULE_ALL]['params']['usetls'true
-            'params' => array( +$backends['sieve']['transport'][Ingo::RULE_ALL]['params']['port'4190
-                // Hostname of the timsieved server +$backends['sieve']['transport'][Ingo::RULE_ALL]['params']['scriptname'= 'ingo'; 
- // Django : 2014-09-12 +$backends['sieve']['transport'][Ingo::RULE_ALL]['params']['debug'= false;# 
- // default: 'hostspec' => 'localhost', +$backends['sieve']['script'][Ingo::RULE_ALL]['driver'= 'sieve'; 
-                'hostspec' => 'imap.dmz.nausch.org', +$backends['sieve']['script'][Ingo::RULE_ALL]['params']['utf8'true; 
-                // Login type of the server +$backends['sieve']['shares'= false;
-                'logintype' => 'PLAIN', +
-                // Enable/disable TLS encryption +
-                'usetls' => true, +
-                // Port number of the timsieved server +
-                'port' => 4190, +
-                // Name of the sieve script +
-                'scriptname=> 'ingo', +
-                // Enable debugging. The sieve protocol communication is logged +
-                // with the DEBUG level. +
- // Django : 2014-09-12 +
- // default: 'debug' => false, +
-                'debug' => true, +
-            ), +
-        ), +
-    ), +
-    'script' => array( +
-        Ingo::RULE_ALL => array( +
-            'driver' => 'sieve', +
-            'params' => array( +
-                // If true, use the deprecated 'imapflags' extension to set +
-                // flag status instead of the newer, standardized +
-                // 'imap4flags'+
-                // 'imapflags' => true, +
- +
-                // If true, use the deprecated 'notify' extension instead of +
-                // the newer, standardized 'enotify'. +
-                // 'notify' => true, +
- +
-                // If using Dovecot or any other Sieve implementation that +
-                // requires folder names to be UTF-8 encoded, set this +
-                // parameter to true. +
- // Django : 2014-09-12 +
- // default: 'utf8' => false, +
-                'utf8' => true, +
-             ), +
-        ), +
-    ), +
-    'shares' => false +
-); +
- +
-/* sivtest Example */ +
-$backends['sivtest'= array( +
-    // Disabled by default +
-    'disabled' => true, +
-    'transport' => array( +
-        Ingo::RULE_ALL => array( +
-            'driver' => 'sivtest', +
-            'params' => array( +
-                // Hostname of the timsieved server +
-                'hostspec' => 'localhost', +
-                // Login type of the server +
-                'logintype' ='GSSAPI', +
-                // Enable/disable TLS encryption +
-                'usetls' => true, +
-                // Port number of the timsieved server +
-                'port' => 4190, +
-                // Name of the sieve script +
-                'scriptname=> 'ingo', +
-                // Location of sivtest +
-                'command' => '/usr/bin/sivtest', +
-                // name of the socket we're using +
-                'socket' => Horde::getTempDir() . '/sivtest.' +
-                    . uniqid(mt_rand()) . '.sock', +
-            ), +
-        ), +
-    ), +
-    'script' => array( +
-        Ingo::RULE_ALL => array( +
-            'driver' => 'sieve', +
-            'params' => array(), +
-        ), +
-    ), +
-    'shares' => false, +
-); +
- +
-/* Sun ONE/JES Example (LDAP/Sieve) */ +
-$backends['ldapsieve'= array( +
-    // Disabled by default +
-    'disabled' => true, +
-    'transport' => array( +
-        Ingo::RULE_ALL => array( +
-            'driver' => 'ldap', +
-            'params' => array( +
-                // Hostname of the ldap server +
-                'hostspec' => 'localhost', +
-                // Port number of the timsieved server +
-                'port' => 389, +
-                // LDAP Protocol Version (default = 2).  3 is required for TLS. +
-                'version' => 3, +
-                // Whether or not to use TLS.  If using TLS, you MUST configure +
-                // OpenLDAP (either /etc/ldap.conf or /etc/ldap/ldap.conf) with +
-                // the CA certificate which signed the certificate of the +
-                // server to which you are connecting.  e.g.: +
-                // +
-                // TLS_CACERT /usr/share/ca-certificates/mozilla/Equifax_Secure_CA.crt +
-                // +
-                // You MAY have problems if you are using TLS and your server +
-                // is configured to make random referrals, since some OpenLDAP +
-                // libraries appear to check the certificate against the +
-                // original domain name, and not the referred-to domain.  This +
-                // can be worked around by putting the following directive in +
-                // the ldap.conf: +
-                // +
-                // TLS_REQCERT never +
-                'tls' => true, +
-                // Bind DN (for bind and script distinguished names, %u is +
-                // replaced with username, and %d is replaced with the internet +
-                // domain components (e.g. "dc=example, dc=com") if available). +
-                'bind_dn' => 'cn=ingo, ou=applications, dc=example, dc=com', +
-                // Bind password.  If not provided, user's password is used +
-                // (useful when bind_dn contains %u). +
-                'bind_password' => 'secret', +
-                // How to find user object. +
-                'script_base' => 'ou=People, dc=example, dc=com', +
-                'script_filter' => '(uid=%u)', +
-                // Attribute script is stored in.  Will not touch non-Ingo +
-                // scripts. +
-                'script_attribute' => 'mailSieveRuleSource' +
-            ), +
-        ), +
-    ), +
-    'script' => array( +
-        Ingo::RULE_ALL => array( +
-            'driver' => 'sieve', +
-            'params' => array() +
-        ), +
-    ), +
-); +
- +
-/* ISPConfig Example */ +
-$backends['ispconfig'= array( +
-    'disabled' => true, +
-    'transport' => array( +
-        Ingo::RULE_ALL => array( +
-            'driver' => 'ispconfig', +
-            // enabling transport_auth() in hooks.php is likely to be required +
-            'params' => array( +
-                'soap_uri' ='http://ispconfig-webinterface.example.com:8080/remote/', +
-                // This user must be created in the ISPConfig webinterface +
-                // under System -> Remote Users.  The required permissions +
-                // ("functions") is "mail user functions" only. +
-                'soap_user=> 'horde'+
-                'soap_pass' => 'secret' +
-            ), +
-        ), +
-    ), +
-    'script' => array( +
-        Ingo::RULE_ALL => array( +
-            'driver' => 'ispconfig', +
-            'params' => array() +
-        ), +
-    ), +
-    'shares' =false +
-); +
- +
-/* Custom SQL Example */ +
-$backends['customsql'= array( +
-    'disabled=> true, +
-    'transport' => array( +
-        Ingo::RULE_ALL => array( +
-            'driver' ='sql', +
-            'params' => $GLOBALS['conf']['sql']+
-        ), +
-    ), +
-    'script' => array( +
-        Ingo::RULE_ALL => array( +
-            'driver' => 'customsql', +
-            'params' => array( +
-                'vacation_unset' => 'UPDATE vacation SET active = 0 WHERE user = %u', +
-                'vacation_set=> 'REPLACE INTO vacation (active, subject, message, user) VALUES (1, %s, %m, %u)' +
-            ), +
-        ), +
-    ), +
-    'shares' =false +
-);+
 </file> </file>
  
Zeile 957: Zeile 619:
  
 ~~DISCUSSION~~ ~~DISCUSSION~~
 +~~AUTOTWEET:~~
  • centos/mail_c7/horde_8.txt
  • Zuletzt geändert: 22.07.2019 15:08.
  • von 127.0.0.1