Advertisement
Guest User

Untitled

a guest
Jul 29th, 2014
386
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.66 KB | None | 0 0
  1. /* Database configuration (mysql:// or postgresql://) */
  2. SOGoProfileURL = "postgresql://sogo:9JFqF5xoufaMyw-S5rEK8r52F@localhost:5432/sogo/sogo_user_profile";
  3. OCSFolderInfoURL = "postgresql://sogo:9JFqF5xoufaMyw-S5rEK8r52F:5432/sogo/sogo_folder_info";
  4. OCSSessionsFolderURL = "postgresql://sogo:s9JFqF5xoufaMyw-S5rEK8r52F:5432/sogo/sogo_sessions_folder";
  5.  
  6. /* Mail */
  7. SOGoDraftsFolderName = Drafts;
  8. SOGoSentFolderName = Sent;
  9. SOGoTrashFolderName = Trash;
  10. SOGoIMAPServer = localhost;
  11. SOGoSieveServer = sieve://127.0.0.1:4190;
  12. SOGoSMTPServer = 127.0.0.1;
  13. SOGoMailDomain = procyon-alpha.com;
  14. SOGoMailingMechanism = smtp;
  15. SOGoForceExternalLoginWithEmail = NO;
  16. SOGoMailSpoolPath = /var/spool/sogo;
  17. NGImap4ConnectionStringSeparator = "/";
  18.  
  19. /* Notifications */
  20. SOGoAppointmentSendEMailNotifications = YES;
  21. SOGoACLsSendEMailNotifications = YES;
  22. SOGoFoldersSendEMailNotifications = YES;
  23.  
  24. /* Authentication */
  25. SOGoPasswordChangeEnabled = YES;
  26.  
  27. /* LDAP authentication example */
  28. //SOGoUserSources = (
  29. // {
  30. // type = ldap;
  31. // CNFieldName = cn;
  32. // UIDFieldName = uid;
  33. // IDFieldName = uid; // first field of the DN for direct binds
  34. // bindFields = (uid, mail); // array of fields to use for indirect binds
  35. // baseDN = "ou=users,dc=acme,dc=com";
  36. // bindDN = "uid=sogo,ou=users,dc=acme,dc=com";
  37. // bindPassword = qwerty;
  38. // canAuthenticate = YES;
  39. // displayName = "Shared Addresses";
  40. // hostname = ldap://127.0.0.1:389;
  41. // id = public;
  42. // isAddressBook = YES;
  43. // }
  44. //);
  45.  
  46. /* LDAP AD/Samba4 example */
  47. //SOGoUserSources = (
  48. // {
  49. // type = ldap;
  50. // CNFieldName = cn;
  51. // UIDFieldName = sAMAccountName;
  52. // baseDN = "CN=users,dc=domain,dc=tld";
  53. // bindDN = "CN=sogo,CN=users,DC=domain,DC=tld";
  54. // bindFields = (sAMAccountName, mail);
  55. // bindPassword = password;
  56. // canAuthenticate = YES;
  57. // displayName = "Public";
  58. // hostname = ldap://127.0.0.1:389;
  59. // filter = "mail = '*'";
  60. // id = directory;
  61. // isAddressBook = YES;
  62. // }
  63. //);
  64.  
  65.  
  66. /* SQL authentication example */
  67. /* These database columns MUST be present in the view/table:
  68. * c_uid - will be used for authentication - it's the username or username@domain.tld)
  69. * c_name - which can be identical to c_uid - will be used to uniquely identify entries
  70. * c_password - password of the user, plain-text, md5 or sha encoded for now
  71. * c_cn - the user's common name - such as "John Doe"
  72. * mail - the user's mail address
  73. * See the installation guide for more details
  74. */
  75. SOGoUserSources =
  76. (
  77. {
  78. type = sql;
  79. id = directory;
  80. viewURL = "postgresql://sogo:9JFqF5xoufaMyw-S5rEK8r52F@127.0.0.1:5432/sogo/sogo_view";
  81. canAuthenticate = YES;
  82. isAddressBook = YES;
  83. userPasswordAlgorithm = md5;
  84. }
  85. );
  86.  
  87. /* Web Interface */
  88. SOGoPageTitle = SOGo;
  89. SOGoVacationEnabled = YES;
  90. SOGoForwardEnabled = YES;
  91. SOGoSieveScriptsEnabled = YES;
  92. SOGoMailAuxiliaryUserAccountsEnabled = YES;
  93. SOGoTrustProxyAuthentication = NO;
  94.  
  95. /* General */
  96. SOGoLanguage = English;
  97. SOGoTimeZone = America/Chicagp;
  98. SOGoCalendarDefaultRoles = (
  99. PublicDAndTViewer,
  100. ConfidentialDAndTViewer
  101. );
  102. SOGoSuperUsernames = (sogo, rbilbrey); // This is an array - keep the parens!
  103. SxVMemLimit = 384;
  104. WOPidFile = "/var/run/sogo/sogo.pid";
  105. SOGoMemcachedHost = "/var/run/memcached.sock";
  106.  
  107. /* Debug */
  108. SOGoDebugRequests = YES;
  109. SoDebugBaseURL = YES;
  110. //ImapDebugEnabled = YES;
  111. //LDAPDebugEnabled = YES;
  112. PGDebugEnabled = YES;
  113. //MySQL4DebugEnabled = YES;
  114. SOGoUIxDebugEnabled = YES;
  115. //WODontZipResponse = YES;
  116. WOLogFile = /var/log/sogo/sogo.log;
  117. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement