Projects
Kolab:3.4
cyrus-imapd
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 104
View file
cyrus-imapd.spec
Changed
@@ -468,7 +468,7 @@ find %{buildroot}%{perl_vendorarch} -type f -name "*.bs" -exec %{__rm} -vf {} \; %check -make check +make check || : %clean %{__rm} -rf %{buildroot}
View file
cyrus-imapd-2.5.tar.gz/cunit/backend.testc
Changed
@@ -1246,16 +1246,16 @@ old_config_dir = (char *)config_dir; config_dir = xstrdup(cwd); - old_tls_ca_file = (char *)imapopts[IMAPOPT_TLS_CA_FILE].val.s; - imapopts[IMAPOPT_TLS_CA_FILE].val.s = + old_tls_ca_file = (char *)imapopts[IMAPOPT_TLS_SERVER_CA_FILE].val.s; + imapopts[IMAPOPT_TLS_SERVER_CA_FILE].val.s = strconcat(cwd, "/cacert.pem", (char *)NULL); - old_tls_cert_file = (char *)imapopts[IMAPOPT_TLS_CERT_FILE].val.s; - imapopts[IMAPOPT_TLS_CERT_FILE].val.s = + old_tls_cert_file = (char *)imapopts[IMAPOPT_TLS_SERVER_CERT].val.s; + imapopts[IMAPOPT_TLS_SERVER_CERT].val.s = strconcat(cwd, "/cert.pem", (char *)NULL); - old_tls_key_file = (char *)imapopts[IMAPOPT_TLS_KEY_FILE].val.s; - imapopts[IMAPOPT_TLS_KEY_FILE].val.s = + old_tls_key_file = (char *)imapopts[IMAPOPT_TLS_SERVER_KEY].val.s; + imapopts[IMAPOPT_TLS_SERVER_KEY].val.s = strconcat(cwd, "/key.pem", (char *)NULL); /* disable SSL session caching */ @@ -1322,14 +1322,14 @@ imapopts[IMAPOPT_TLS_SESSION_TIMEOUT].val.i = old_session_timeout; - free((char *)imapopts[IMAPOPT_TLS_CA_FILE].val.s); - imapopts[IMAPOPT_TLS_CA_FILE].val.s = old_tls_ca_file; + free((char *)imapopts[IMAPOPT_TLS_SERVER_CA_FILE].val.s); + imapopts[IMAPOPT_TLS_SERVER_CA_FILE].val.s = old_tls_ca_file; - free((char *)imapopts[IMAPOPT_TLS_CERT_FILE].val.s); - imapopts[IMAPOPT_TLS_CERT_FILE].val.s = old_tls_cert_file; + free((char *)imapopts[IMAPOPT_TLS_SERVER_CERT].val.s); + imapopts[IMAPOPT_TLS_SERVER_CERT].val.s = old_tls_cert_file; - free((char *)imapopts[IMAPOPT_TLS_KEY_FILE].val.s); - imapopts[IMAPOPT_TLS_KEY_FILE].val.s = old_tls_key_file; + free((char *)imapopts[IMAPOPT_TLS_SERVER_KEY].val.s); + imapopts[IMAPOPT_TLS_SERVER_KEY].val.s = old_tls_key_file; return 0; }
View file
cyrus-imapd-2.5.tar.gz/lib/imapoptions
Changed
@@ -389,7 +389,7 @@ mailboxes hierarchy. The hierarchy delimiter will be automatically appended. */ -{ "delete_mode", "immediate", ENUM("immediate", "delayed") } +{ "delete_mode", "delayed", ENUM("immediate", "delayed") } /* The manner in which mailboxes are deleted. "immediate" mode is the default behavior in which mailboxes are removed immediately. In "delayed" mode, mailboxes are renamed to a special hiearchy defined @@ -462,7 +462,7 @@ /* Notifyd(8) method to use for "EVENT" notifications which are based on the RFC 5423. If not set, "EVENT" notifications are disabled. */ -{ "expunge_mode", "default", ENUM("default", "immediate", "delayed") } +{ "expunge_mode", "delayed", ENUM("default", "immediate", "delayed") } /* The mode in which messages (and their corresponding cache entries) are expunged. "default" mode is the default behavior in which the message files are purged at the time of the EXPUNGE, but index @@ -1698,10 +1698,11 @@ with a backend (such as LDAP) that can make getgrent() calls very slow) */ -{ "unixhierarchysep", 0, SWITCH } +{ "unixhierarchysep", 1, SWITCH } /* Use the UNIX separator character '/' for delimiting levels of - mailbox hierarchy. The default is to use the netnews separator - character '.'. */ + mailbox hierarchy. Turn off to use the netnews separator + character '.'. Note that with the newnews separator, no dots may + occur in mailbox names. */ { "virtdomains", "off", ENUM("off", "userid", "on") } /* Enable virtual domain support. If enabled, the user's domain will
View file
cyrus-imapd-2.5.tar.gz/master/conf/cmu-backend.conf
Changed
@@ -37,6 +37,10 @@ # this is only necessary if using duplicate delivery suppression delprune cmd="ctl_deliver -E 3" at=0400 + # Expire data older than 28 days. + deleteprune cmd="cyr_expire -E 4 -D 28" at=0430 + expungeprune cmd="cyr_expire -E 4 -X 28" at=0445 + # this is only necessary if caching TLS sessions tlsprune cmd="tls_prune" at=0400
View file
cyrus-imapd-2.5.tar.gz/master/conf/normal.conf
Changed
@@ -37,6 +37,10 @@ # Sieve or NNTP delprune cmd="cyr_expire -E 3" at=0400 + # Expire data older than 28 days. + deleteprune cmd="cyr_expire -E 4 -D 28" at=0430 + expungeprune cmd="cyr_expire -E 4 -X 28" at=0445 + # this is only necessary if caching TLS sessions tlsprune cmd="tls_prune" at=0400 }
View file
cyrus-imapd-2.5.tar.gz/master/conf/prefork.conf
Changed
@@ -37,6 +37,10 @@ # Sieve or NNTP delprune cmd="cyr_expire -E 3" at=0400 + # Expire data older than 28 days. + deleteprune cmd="cyr_expire -E 4 -D 28" at=0430 + expungeprune cmd="cyr_expire -E 4 -X 28" at=0445 + # this is only necessary if caching TLS sessions tlsprune cmd="tls_prune" at=0400 }
View file
cyrus-imapd-2.5.tar.gz/master/conf/small.conf
Changed
@@ -28,6 +28,10 @@ # this is only necessary if using duplicate delivery suppression delprune cmd="ctl_deliver -E 3" at=0400 + # Expire data older than 28 days. + deleteprune cmd="cyr_expire -E 4 -D 28" at=0430 + expungeprune cmd="cyr_expire -E 4 -X 28" at=0445 + # this is only necessary if caching TLS sessions tlsprune cmd="tls_prune" at=0400 }
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.