Advertisement
Guest User

Untitled

a guest
Apr 17th, 2015
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.87 KB | None | 0 0
  1. <?php
  2.                                                                                                                                                
  3. $backends['imap'] = array(
  4.                                                                                                                                                
  5.     // ENABLED by default
  6.                                                                                                                                                
  7.     'disabled' => false,
  8.                                                                                                                                                
  9.     'transport' => array(
  10.                                                                                                                                                
  11.         Ingo::RULE_ALL => array(
  12.                                                                                                                                                
  13.             'driver' => 'null',
  14.                                                                                                                                                
  15.             'params' => array(),
  16.                                                                                                                                                
  17.         ),
  18.                                                                                                                                                
  19.     ),
  20.                                                                                                                                                
  21.     'script' => array(
  22.                                                                                                                                                
  23.         Ingo::RULE_ALL => array(
  24.                                                                                                                                                
  25.             'driver' => 'imap',
  26.                                                                                                                                                
  27.             'params' => array(),
  28.                                                                                                                                                
  29.         ),
  30.                                                                                                                                                
  31.     ),
  32.                                                                                                                                                
  33.     'shares' => false
  34.                                                                                                                                                
  35. );
  36.                                                                                                                                                
  37. $backends['sieve'] = array(
  38. 'disabled' => false,
  39. 'transport' => 'timsieved',
  40. 'params' => array(
  41. // Hostname of the timsieved server
  42. 'hostspec' => 'localhost',
  43. // Login type of the server
  44. 'logintype' => 'PLAIN',
  45. // Enable/disable TLS encryption
  46. 'usetls' => true,
  47. // Port number of the timsieved server
  48. 'port' => 4190,
  49. // Name of the sieve script
  50. 'scriptname' => 'ingo',
  51. // Enable debugging. With Net_Sieve 1.2.0 or later, the sieve protocol
  52. // communication is logged with the DEBUG level. Earlier versions
  53. // print the log to the screen.
  54. 'debug' => false,
  55. ),
  56. 'script' => 'sieve',
  57. 'scriptparams' => array(
  58. // If using Dovecot or any other Sieve implementation that requires
  59. // folder names to be UTF-8 encoded, set this parameter to true.
  60. 'utf8' => true,
  61. ),
  62. 'shares' => false
  63. );
  64.                                                                                                                              1,1           Top
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement