search for: set_bool

Displaying 13 results from an estimated 13 matches for "set_bool".

2015 Jan 13
0
[PATCH] Make Delivered-To optional
...mtp_set->lmtp_add_delivered_to) str_printfa(str, "Delivered-To: %s\r\n", rcpt_to); } diff -r e3640ccaa76d src/lmtp/lmtp-settings.c --- a/src/lmtp/lmtp-settings.c Sat Jan 10 04:32:42 2015 +0200 +++ b/src/lmtp/lmtp-settings.c Tue Jan 13 11:29:20 2015 +0100 @@ -60,6 +60,7 @@ DEF(SET_BOOL, lmtp_proxy), DEF(SET_BOOL, lmtp_save_to_detail_mailbox), DEF(SET_BOOL, lmtp_rcpt_check_quota), + DEF(SET_BOOL, lmtp_add_delivered_to), DEF(SET_STR, lmtp_address_translate), DEF(SET_STR_VARS, login_greeting), DEF(SET_STR, login_trusted_networks), @@ -71,6 +72,7 @@ .lmtp_proxy = FALSE,...
2007 Jul 25
2
Allowing tilde at start of mailbox names
...ab9cf3790ea9 src/master/master-settings-defs.c --- a/src/master/master-settings-defs.c Tue Jul 24 05:48:03 2007 +0300 +++ b/src/master/master-settings-defs.c Wed Jul 25 14:08:43 2007 +0100 @@ -67,6 +67,7 @@ static struct setting_def setting_defs[] DEF(SET_INT, mailbox_idle_check_interval), DEF(SET_BOOL, mail_debug), DEF(SET_BOOL, mail_full_filesystem_access), + DEF(SET_BOOL, mail_allow_tilde), DEF(SET_INT, mail_max_keyword_length), 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-setti...
2017 Aug 26
3
[PATCH] Add support for lower TLS version than default
...lib-master/master-service-ssl-settings.c +++ b/src/lib-master/master-service-ssl-settings.c @@ -26,6 +26,7 @@ static const struct setting_define maste DEF(SET_STR, ssl_protocols), DEF(SET_STR, ssl_cert_username_field), DEF(SET_STR, ssl_crypto_device), + DEF(SET_STR, ssl_lowest_version), DEF(SET_BOOL, ssl_verify_client_cert), DEF(SET_BOOL, ssl_require_crl), DEF(SET_BOOL, verbose_ssl), @@ -54,6 +55,7 @@ static const struct master_service_ssl_s .ssl_protocols = "!SSLv3", #endif .ssl_cert_username_field = "commonName", + .ssl_lowest_version = NULL, .ssl_crypto_device...
2006 Jul 26
0
[PATCH] [HVM] enable sound card support for qemu
...else: diff -r 2abb1c801ab7 tools/python/xen/xm/create.py --- a/tools/python/xen/xm/create.py Wed Jul 19 16:09:59 2006 +0800 +++ b/tools/python/xen/xm/create.py Thu Jul 20 21:19:07 2006 +0800 @@ -404,9 +404,9 @@ gopts.var(''nographic'', val=''no|yes'', fn=set_bool, default=0, use="Should device models use graphics?") -gopts.var(''audio'', val=''no|yes'', - fn=set_bool, default=0, - use="Should device models enable audio?") +gopts.var(''soundhw'', val=''...
2005 Jul 20
3
Another minor IMAP LIST issue
I've just noticed that Dovecot 1.0-stable and 1.0-test78 don't include mbox folders with names beginning with "." in the IMAP LIST output. These are often used to store "hidden" folders for storing things like IMAP client configuration (e.g. Pine 4.x, IMHO, Prayer). Usually the user shouldn't be able to see these, but there are occassions when they might. It seems
2003 Sep 10
1
Patch for auto-creating home directories
...mbox_dotlock_change_timeout; + unsigned int parent_dir_umask; unsigned int umask; int mail_drop_priv_before_exec; *** ./src/master/master-settings.c.orig Wed Sep 10 12:13:59 2003 --- ./src/master/master-settings.c Wed Sep 10 12:14:40 2003 *************** *** 67,72 **** --- 67,73 ---- DEF(SET_BOOL, mbox_read_dotlock), DEF(SET_INT, mbox_lock_timeout), DEF(SET_INT, mbox_dotlock_change_timeout), + DEF(SET_INT, parent_dir_umask), DEF(SET_INT, umask), DEF(SET_BOOL, mail_drop_priv_before_exec), *************** *** 180,185 **** --- 181,187 ---- MEMBER(mbox_read_dotlock) FALSE, M...
2013 Sep 20
3
[PATCH] preload_app can take an optional block for warmup
...rb +++ b/lib/unicorn/configurator.rb @@ -441,9 +441,22 @@ class Unicorn::Configurator # by properly deploying all required code and dependencies. # Using preload_app=true means any application load error will # cause the master process to exit with an error. - - def preload_app(bool) - set_bool(:preload_app, bool) + # + # preload_app can also take an optional block. This block will be invoked + # with the rack application and can be used to "warm up" the application + # before deployment: + # + # preload_app do |app| + # client = Rack::MockRequest.new(app) + # cli...
2003 Apr 15
1
PATCH allow_zero_gid option
...ttings.c,v retrieving revision 1.16 diff -u -3 -p -r1.16 master-settings.c --- src/master/master-settings.c 2 Apr 2003 02:09:41 -0000 1.16 +++ src/master/master-settings.c 15 Apr 2003 17:37:28 -0000 @@ -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_z...
2006 Jul 13
3
[PATCH] Update new qemu-dm to spawn vncviewer
...@@ -102,7 +102,7 @@ fn=set_true, default=0, use="Connect to the console after the domain is created.") -gopts.var(''vncviewer'', val=''no|yes'', +gopts.var(''vncconnect'', val=''no|yes'', fn=set_bool, default=None, use="""Spawn a vncviewer listening for a vnc server in the domain. The address of the vncviewer is passed to the domain on the kernel command @@ -111,6 +111,12 @@ Only valid when vnc=1. """) +gopts.var('&...
2006 Jan 18
6
Major CPU spike for SSL parameters?
I went from a nightly of about 20051117 or so (about alpha4 generation) to 1.0beta1 yesterday, and dovecot is now spinning the CPU furiously apparently every ~10 minutes per: Jan 18 13:04:36 server dovecot: SSL parameters regeneration completed Jan 18 13:14:14 server dovecot: SSL parameters regeneration completed Jan 18 13:24:00 server dovecot: SSL parameters regeneration completed Jan 18
2007 Nov 28
0
[Xen-ia64-devel] [PATCH] Add guest_os_type domain config option
...to add?") + +gopts.var(''guest_os_type'', val=''NAME'', + fn=set_value, default=''default'', + use="Guest OS type running in HVM") gopts.var(''stdvga'', val=''no|yes'', fn=set_bool, default=0, @@ -733,7 +737,9 @@ def configure_hvm(config_image, vals): ''localtime'', ''serial'', ''stdvga'', ''isa'', ''nographic'', ''soundhw'', ''vnc'', ...
2017 Sep 13
2
[RFC master-2.2 0/1] Support OpenSSL 1.1 API for setting allowed TLS versions
Hi, I came up with the following patch while trying to figure out a good solution for the situation described in Debian bug #871987[1]. In short, OpenSSL in Debian unstable has disabled TLSv1.0 and TLSv1.1 *by default*. That means that unless an application requests otherwise, only TLSv1.2 is supported. In the world of e-mail this is seemingly an issue, as there are still way too many old clients
2006 Sep 26
15
RE: Individual passwords for guest VNC servers ?
> Thanks all point about security, I''ll do as follows. > I thought that the point was the following two. > > > 1. Storage place of encrypted password > Should I store it in /etc/xen/passwd ? > Or, should I wait for DB of Xen that will be released in > the future? The xend life cycle management patches were posted by Alistair a couple of months back.