search for: restrict_user

Displaying 3 results from an estimated 3 matches for "restrict_user".

2008 May 18
1
Domain variable in checkpassword
...'TCPLOCALIP' => '128.177.27.100', 'LOG_TO_MASTER' => '1', 'MASTER_USER_SEPARATOR' => '', 'RESTRICT_SETUID' => '', 'REMOTE_IP' => '213.31.43.3', 'RESTRICT_USER' => '', 'DOVECOT_VERSION' => '1.0.rc15', 'MECHANISMS' => 'plain', 'RESTRICT_CHROOT' => '', 'DEFAULT_REALM' => '' }; ARGS: @ARGV = [ '%d',...
2008 Mar 28
2
How to force working of a redirect features in sieve plugin?
Hello Trying to setup dovecot installation with sieve plugin, can't configure how to make redirect working. My setup 1 Exim + dovecot lda begin transports dovecot_virtual_delivery: driver = pipe command = /usr/local/dovecot/libexec/dovecot/deliver -d $local_part message_prefix = message_suffix = delivery_date_add envelope_to_add return_path_add log_output user = exim 2
2003 Apr 15
1
PATCH allow_zero_gid option
...03 17:37:26 -0000 @@ -31,12 +31,14 @@ #include <grp.h> void restrict_access_set_env(const char *user, uid_t uid, gid_t gid, - const char *chroot_dir) + const char *chroot_dir, int allow_zg) { if (user != NULL && *user != '\0') env_put(t_strconcat("RESTRICT_USER=", user, NULL)); if (chroot_dir != NULL && *chroot_dir != '\0') env_put(t_strconcat("RESTRICT_CHROOT=", chroot_dir, NULL)); + if (allow_zg == TRUE) + env_put(t_strdup("ALLOW_ZERO_GID=TRUE")); env_put(t_strdup_printf("RESTRICT_SETUID=%s",...