search for: default_set

Displaying 7 results from an estimated 7 matches for "default_set".

Did you mean: default_sep
2011 Apr 29
3
questions about cookies when bridging together two rails apps
...2) I did a global search of app and found no property or method called "session_token_domain", although there is a Session class but session_token_domain is not declared anywhere in it. The only other location is in settings.yml, which has something like this: production: <<: *default_settings session_token_domain: xxxxx So I''m not sure why this doesn''t throw an exception either. 3) Finally I see that Rails supports a hash called cookies that can pass strings or symbols. Here a key is created and a value which contains subhashes is passed into it. So we store a...
2007 Jun 20
3
dovecot -n segfault
# uname -a Linux ns2 2.6.18-4-sparc64 #1 Mon Mar 26 11:16:07 UTC 2007 sparc64 GNU/Linux # dovecot -n # 1.0.1: /usr/local/etc/dovecot.conf Segmentation fault uhu? ciao Luca
2006 May 18
0
building 1.0beta8 with gcc 2.95
The following patch is need to correctly align the default_settings structure with gcc 2.95, which doesn't recognise C99 style struct initializers. --- src/master/master-settings.c~ 2006-04-25 04:00:07.000000000 +0200 +++ src/master/master-settings.c 2006-05-18 11:14:08.949376000 +0200 @@ -367,6 +367,7 @@ /* .. */ MEMBER(login_uid) 0, + MEMBER(imap_g...
2006 Jan 27
1
gcc 2.95 compile errors
...In function `create_unix_listener': main.c:101: warning: `fd' might be used uninitialized in this function dict-process.c:96: warning: `dict_process_listen' defined but not used master-settings.c:360: warning: missing initializer master-settings.c:360: warning: (near initialization for `default_settings.listen_ip') quota-storage.c: In function `quota_save_init': quota-storage.c:165: warning: assignment from incompatible pointer type -- --+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+- Christopher Wakelin, c.d.wakelin@reading.ac.uk IT...
2007 Mar 29
3
MANAGESIEVE patch v4 for dovecot 1.0.rc28
Hello dovecot users, I have updated the MANAGESIEVE patch to fix the currently known small problems with the protocol implementation. It is designed for rc28, but also compiles cleanly with the current cvs branch_1_0. Change Log V4 ------------- - Added managesieve_implementation_string setting to the managesieve configuration. This can be used to customize the default
2003 Apr 15
1
PATCH allow_zero_gid option
...@@ -46,6 +46,7 @@ static struct setting_def setting_defs[] DEF(SET_INT, max_mail_processes), DEF(SET_BOOL, verbose_proctitle), + DEF(SET_BOOL, allow_zero_gid), DEF(SET_INT, first_valid_uid), DEF(SET_INT, last_valid_uid), DEF(SET_INT, first_valid_gid), @@ -153,6 +154,7 @@ struct settings default_settings = { MEMBER(max_mail_processes) 1024, MEMBER(verbose_proctitle) FALSE, + MEMBER(allow_zero_gid) FALSE, MEMBER(first_valid_uid) 500, MEMBER(last_valid_uid) 0, MEMBER(first_valid_gid) 1, Index: src/master/master-settings.h ==============================================================...
2007 Jul 25
2
Allowing tilde at start of mailbox names
...DEF(SET_BOOL, mail_save_crlf), DEF(SET_BOOL, mail_read_mmaped), diff -r a23be6956727 -r ab9cf3790ea9 src/master/master-settings.c --- a/src/master/master-settings.c Tue Jul 24 05:48:03 2007 +0300 +++ b/src/master/master-settings.c Wed Jul 25 14:08:43 2007 +0100 @@ -216,6 +216,7 @@ struct settings default_settings = { MEMBER(mailbox_idle_check_interval) 30, MEMBER(mail_debug) FALSE, MEMBER(mail_full_filesystem_access) FALSE, + MEMBER(mail_allow_tilde) FALSE, MEMBER(mail_max_keyword_length) 50, MEMBER(mail_save_crlf) FALSE, MEMBER(mail_read_mmaped) FALSE, diff -r a23be6956727 -r ab9cf3790ea9...