[dovecot-cvs] dovecot/src/master master-settings-defs.c, 1.1, 1.2 master-settings.c, 1.148, 1.149
tss at dovecot.org
tss at dovecot.org
Thu Dec 28 12:26:51 UTC 2006
- Previous message: [dovecot-cvs] dovecot/src/deliver Makefile.am, 1.6, 1.7 deliver.c, 1.42, 1.43
- Next message: [dovecot-cvs] dovecot/src/plugins/acl acl-api-private.h, 1.2.2.1, 1.2.2.2 acl-api.c, 1.2.2.1, 1.2.2.2 acl-backend-vfile.c, 1.5.2.3, 1.5.2.4 acl-backend.c, 1.2.2.2, 1.2.2.3 acl-plugin.c, 1.1, 1.1.2.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /var/lib/cvs/dovecot/src/master
In directory talvi:/tmp/cvs-serv26302/master
Modified Files:
master-settings.c
Added Files:
master-settings-defs.c
Log Message:
deliver was treating boolean settings set to "no" as if they were "yes"
(usually they were supposed to be commented out)
Index: master-settings.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/master/master-settings.c,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -d -r1.148 -r1.149
--- master-settings.c 22 Dec 2006 14:20:40 -0000 1.148
+++ master-settings.c 28 Dec 2006 12:26:47 -0000 1.149
@@ -49,119 +49,7 @@
int level;
};
-#define DEF(type, name) \
- { type, #name, offsetof(struct settings, name) }
-
-static struct setting_def setting_defs[] = {
- /* common */
- DEF(SET_STR, base_dir),
- DEF(SET_STR, log_path),
- DEF(SET_STR, info_log_path),
- DEF(SET_STR, log_timestamp),
- DEF(SET_STR, syslog_facility),
-
- /* general */
- DEF(SET_STR, protocols),
- DEF(SET_STR, listen),
- DEF(SET_STR, ssl_listen),
-
- DEF(SET_BOOL, ssl_disable),
- DEF(SET_STR, ssl_ca_file),
- DEF(SET_STR, ssl_cert_file),
- DEF(SET_STR, ssl_key_file),
- DEF(SET_STR, ssl_key_password),
- DEF(SET_INT, ssl_parameters_regenerate),
- DEF(SET_STR, ssl_cipher_list),
- DEF(SET_BOOL, ssl_verify_client_cert),
- DEF(SET_BOOL, disable_plaintext_auth),
- DEF(SET_BOOL, verbose_ssl),
- DEF(SET_BOOL, shutdown_clients),
- DEF(SET_BOOL, nfs_check),
- DEF(SET_BOOL, version_ignore),
-
- /* login */
- DEF(SET_STR, login_dir),
- DEF(SET_STR, login_executable),
- DEF(SET_STR, login_user),
- DEF(SET_STR, login_greeting),
- DEF(SET_STR, login_log_format_elements),
- DEF(SET_STR, login_log_format),
-
- DEF(SET_BOOL, login_process_per_connection),
- DEF(SET_BOOL, login_chroot),
- DEF(SET_BOOL, login_greeting_capability),
-
- DEF(SET_INT, login_process_size),
- DEF(SET_INT, login_processes_count),
- DEF(SET_INT, login_max_processes_count),
- DEF(SET_INT, login_max_connections),
-
- /* mail */
- DEF(SET_STR, valid_chroot_dirs),
- DEF(SET_STR, mail_chroot),
- DEF(SET_INT, max_mail_processes),
- DEF(SET_BOOL, verbose_proctitle),
-
- DEF(SET_INT, first_valid_uid),
- DEF(SET_INT, last_valid_uid),
- DEF(SET_INT, first_valid_gid),
- DEF(SET_INT, last_valid_gid),
- DEF(SET_STR, mail_extra_groups),
-
- DEF(SET_STR, default_mail_env),
- DEF(SET_STR, mail_location),
- DEF(SET_STR, mail_cache_fields),
- DEF(SET_STR, mail_never_cache_fields),
- DEF(SET_INT, mail_cache_min_mail_count),
- DEF(SET_INT, mailbox_idle_check_interval),
- DEF(SET_BOOL, mail_debug),
- DEF(SET_BOOL, mail_full_filesystem_access),
- DEF(SET_INT, mail_max_keyword_length),
- DEF(SET_BOOL, mail_save_crlf),
- DEF(SET_BOOL, mail_read_mmaped),
- DEF(SET_BOOL, mmap_disable),
- DEF(SET_BOOL, mmap_no_write),
- DEF(SET_BOOL, fsync_disable),
- DEF(SET_STR, lock_method),
- DEF(SET_BOOL, maildir_stat_dirs),
- DEF(SET_BOOL, maildir_copy_with_hardlinks),
- DEF(SET_BOOL, maildir_copy_preserve_filename),
- DEF(SET_STR, mbox_read_locks),
- DEF(SET_STR, mbox_write_locks),
- DEF(SET_INT, mbox_lock_timeout),
- DEF(SET_INT, mbox_dotlock_change_timeout),
- DEF(SET_INT, mbox_min_index_size),
- DEF(SET_BOOL, mbox_dirty_syncs),
- DEF(SET_BOOL, mbox_very_dirty_syncs),
- DEF(SET_BOOL, mbox_lazy_writes),
- DEF(SET_INT, dbox_rotate_size),
- DEF(SET_INT, dbox_rotate_min_size),
- DEF(SET_INT, dbox_rotate_days),
- DEF(SET_INT, umask),
- DEF(SET_BOOL, mail_drop_priv_before_exec),
-
- DEF(SET_STR, mail_executable),
- DEF(SET_INT, mail_process_size),
- DEF(SET_STR, mail_plugins),
- DEF(SET_STR, mail_plugin_dir),
- DEF(SET_STR, mail_log_prefix),
-
- /* imap */
- DEF(SET_INT, imap_max_line_length),
- DEF(SET_STR, imap_capability),
- DEF(SET_STR, imap_client_workarounds),
-
- /* pop3 */
- DEF(SET_BOOL, pop3_no_flag_updates),
- DEF(SET_BOOL, pop3_enable_last),
- DEF(SET_BOOL, pop3_reuse_xuidl),
- DEF(SET_BOOL, pop3_lock_session),
- DEF(SET_STR, pop3_uidl_format),
- DEF(SET_STR, pop3_client_workarounds),
- DEF(SET_STR, pop3_logout_format),
-
- { 0, NULL, 0 }
-};
+#include "master-settings-defs.c"
#undef DEF
#define DEF(type, name) \
- Previous message: [dovecot-cvs] dovecot/src/deliver Makefile.am, 1.6, 1.7 deliver.c, 1.42, 1.43
- Next message: [dovecot-cvs] dovecot/src/plugins/acl acl-api-private.h, 1.2.2.1, 1.2.2.2 acl-api.c, 1.2.2.1, 1.2.2.2 acl-backend-vfile.c, 1.5.2.3, 1.5.2.4 acl-backend.c, 1.2.2.2, 1.2.2.3 acl-plugin.c, 1.1, 1.1.2.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the dovecot-cvs
mailing list