Displaying 20 results from an estimated 58 matches for "destus".
Did you mean:
dessus
2018 Mar 26
1
destuser setting useless on LMTP proxy
I tried setting the "destuser" setting on the LMTP director as follows, to preserve the original envelope rcpt:
protocol lmtp {
auth_socket_path = director-userdb
passdb {
driver = ...
override_fields = destuser=%{orig_user}
}
}
The passdb driver would return the appropriate "user" for each...
2008 Aug 14
2
Proxy logging destuser
Hi All
My first post to the list, so "hello world"!
Having searched the list archives and the wiki for an answer to this, I
don't think it is possible. However, let me ask nonetheless...
Is it possible for a Dovecot proxy's login process (IMAP and POP3) to
include the "destuser", i.e. the uid used to authenticate to the backend
IMAP/POP3 server, in its logging? "%u" gives me the uid provided by the
client of course, but it would useful for my purposes to catch the
"destuser" in the same log line.
The only way to get the proxy to log "des...
2016 Jun 16
2
Recipient delimiter and lmtp proxying
...xy lmtp using director to hash to the same backend
as pop3/imap. My pop3/imap users are of the form:
username
and my lmtp users are of the form:
<username at domain>
Where domain is fairly redundant but does carry some useful information.
Now, I can proxy lmtp using user=%{username} and
destuser=%{orig_user}, and this all appears to work correctly.
However, if I also try to pass a detail part through to the backend the
lmtp users now take the form:
<username+detail at domain>
I can still use user=%{username}
with recipient_delimiter = +, and the detail is correctly stripped,...
2019 Mar 17
0
LMTP Proxy failure using master login via destuser field
...d like this:
passdb {
driver = sql
args = /etc/dovecot/sql/my-passdb.conf
result_success = continue-ok
result_failure = return-fail
result_internalfail = return-fail
}
# Add director master user credentials if above succeeded
passdb {
driver = static
args = proxy=y starttls=any-cert \
destuser=%u*director at example.com \
pass=correcthorsebatterystaple \
nopassword=y
skip = unauthenticated
}
In the end I found that setting the `master` field instead of `destuser` solves the issue. It looks like LMTP does not know how to handle the master user separator although set. I this...
2011 Mar 25
1
Ignored proxy_maybe var and no local login when "host = Proxy FQDN"
Hi help is preciated,
PROBLEM
The dovecot-ldap.conf of "proxy server A" is working when the "host"
attribute is the FQDN of other server:
pass_attrs = uid=user,userPassword={SSHA}password,\
=proxy_maybe=,maildrop=host,=port=143,=destuser=%u,=starttls=any-cert
pass_filter = (&(objectClass=posixAccount)(uid=%u))
CASES
When the "host" attribute is the "FQDN of server A" dovecot imap-login start
and infinite loop which swallow all RAM, and process are showing many
connections although is just 1 test user con...
2010 Jan 29
1
Master user and proxying
...CT password FROM
master_users WHERE username= '%u' AND status = 'ok'
I also tried on proxy:
password_query = SELECT NULL AS password, host, 'Y' AS nologin, 'Y' AS
nodelay, 'Y' AS nopassword, 'Y' AS proxy,'%u' as user ,'%u*pierre' as
destuser, '123' as pass FROM proxy WHERE domain = '%d'
instead of
password_query = SELECT NULL AS password, host, 'Y' AS nologin, 'Y' AS
nodelay, 'Y' AS nopassword, 'Y' AS proxy,'%u' as user FROM proxy WHERE
domain = '%d'
it did not wor...
2013 May 22
1
problem with proxy setup
...iguration.
i have two kind of users, the first will be proxied to a dovecot backend
with masteruser-login, the other one will be proxied to another
non-dovecot imapserver with nopassword.
Everything looks to work if i use passwd-file like this:
user1:{PLAIN}pass1:::::::proxy=y host=192.168.1.1
destuser=user1*masteruser pass=masterpass
user2::::::::nopassword proxy=y host=192.168.2.2
In an second step i try the same behavior with sql (postgresql), but
there are my problems.
In my thinking, the sql query should return the right fields (in
passwd-file) like proxy, host, ..
but whats the trick,...
2011 Dec 29
1
Trouble with proxy_maybe and auth_default_realm
...st=localhost dbname=email user=email
default_pass_scheme = PLAIN
password_query = SELECT password, \
IF('%s' = 'pop3', host_pop3, host) as host, \
IF(host='' or host='00.00.241.140', NULL, 'Y') as proxy_maybe, \
concat(userid, '@', domain) as destuser, \
password as pass, \
'/stor/mail/domains/%d/%n' AS userdb_home, \
'maildir:/stor/mail/domains/%d/%n/Maildir' as userdb_mail, \
concat('*:storage=', quota_mb, 'M') as userdb_quota_rule, \
'vmail' AS userdb_uid, 'vmail' AS userdb_gid...
2007 Feb 19
2
NTLM oddities
...19 16:15:56 Info: auth-worker(mail.infowest.com): sql(John,
209.33.215.142): query: SELECT a.clearpasswd AS password, v.storeIP AS host,
CONCAT(IF('John' LIKE
'%@%.%',CONCAT(LCASE('John'),''),CONCAT(LCASE('John'),'@',p.host)),'*masteruser')
AS destuser, 'Y' AS nologin, 'Y' AS nodelay, 'Y' AS proxy, 'masterpass' AS
pass FROM iwmailsystem.virtmailbox AS v INNER JOIN
iwmailsystem.popserversAS p ON (
p.storeIP = '204.17.177.60') INNER JOIN authenticate.users AS a ON
(a.userID= IF('John' LIKE
'%@%....
2008 Nov 19
2
CRAM-MD5 and proxy_maybe
...case?
We're using SQL so I could rewrite the query with IFs to fake
proxy_maybe and return the password as NULL and nologin as Y, but if it
works that way couldn't it work with proxy_maybe?
This works:
password_query = \
SELECT NULL AS password, host, CONCAT(user,'@',domain) AS destuser \
'Y' AS nologin, 'Y' AS nodelay, 'Y' AS proxy \
FROM accounts WHERE class='pop' AND domain='%d'
This doesn't work if proxied and CRAM-MD5 auth:
password_query = \
SELECT \
CONCAT(user,'@',domain) AS user, password, \
host, ...
2013 Oct 03
0
Proxy to gmail help
...home=/dev/null
driver = static
}
verbose_ssl = yes
version_ignore = yes
#############################################################
==> sql.conf file
driver = mysql
connect = host=/var/lib/mysql/mysql.sock dbname=mysql user=root
password=xxxxxx
password_query = SELECT NULL AS password, host, destuser, proxy, 'Y' AS
starttls, '995' AS port, 'Y' AS nopassword FROM DovecotProxy WHERE user =
'%u'
#############################################################
==> DovecotProxy table
mysql> select * from DovecotProxy where user = 'MYUSER';
+-------------+...
2006 Dec 04
2
master request not found
...x.xx
rip=xx.xx.xx.xx resp=<hidden> Dec 4 17:39:31 vega dovecot:
auth(default): client out: CONT 1 Dec 4 17:39:31 vega dovecot:
auth(default): client in: CONT<hidden> Dec 4 17:39:31 vega dovecot:
auth-worker(default): sql(XXXX,xx.xx.xx.xx:
query: SELECT NULL AS password, host, destuser, 'Y' AS proxy FROM
exchange_proxy WHERE user='XXXX' Dec 4 17:39:31
vega dovecot: auth(default): client out: OK 1
user=XXXX host=XXXX
destuser=newrock.marshal at acd.net proxy pass=<hidden> Dec 4
17:39:31 vega dovecot: auth(default): master in: REQUEST 1...
2013 Oct 07
2
Proxy to gmail not working
...bCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz
auth_verbose = yes
base_dir = /var/run/dovecot/
listen = 162.106.yyy.zzz
login_greeting = Dovecot Ready
login_log_format_elements = %u %r %m %c
mail_debug = yes
mail_max_userip_connections = 100
passdb {
args = proxy=y nopassword=y user=remotemail destuser=remotemail at gmail.comhost=
pop.gmail.com port=995 proxy_timeout=15 starttls=y
driver = static
}
protocols = pop3
service pop3-login {
client_limit = 200
inet_listener pop3 {
address = dserver
port = 110
}
process_limit = 1
process_min_avail = 1
service_count = 0
vsz_limi...
2015 Apr 06
1
Question About Dovadm syntax
Hello All,
I just have a quick question about doveadm commands.
1. Is there a command that we can use to count emails for a particular end
user?
2. If an end user needed to copy/move emails from one account to another,
is there a command?
Also, I've searched Google results, numerous Ubuntu, CentOS, Fedora forums,
Doveadm forums, and read the DoveCot/DoveADM man pages numerous times and
2023 Jan 12
0
director: pass different username to proxy than the one that is used for hashing
...d for hashing by just returning a different
user from the db. but that user is also the one that is send in the
proxied request.
this is what I have so far:
director_username_hash = %L{user}
# relevant sql:
password_query = SELECT \
??? username as user, \ # -> this is used for hashing if destuser is
not present. = OK
??? NULL as password, \
??? 'y' as proxy, \
??? 'y' as nopassword, \
?? '%n@%d' as destuser \ # -> but as soon as I add this, this is used
for hashing = !OK
? FROM dovecot_data('%n', '%d')
Anyone know any clever tricks to acc...
2008 Dec 05
1
proxy and master user
...ster' suffix from the username when using
the master user to log in on the proxy. So the base name of the user
with the master password are submitted to the real server, which of
course fails.
Is there a way to tell the proxy to forward the master user to the real
server, without forcing it in destuser, since we also need to have
regular (non master) logins?
Thanks in advance.
--
Matthieu Herrb
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/x-pkcs7-signature
Size: 4051 bytes
Desc: S/MIME Cryptographic Signature
URL: <http://d...
2012 Oct 30
1
POP3 Proxy : user format not accepted
...instead of local_part at domain, which is an old setting on my POP3 server. And in that case, Dovecot returns 'Authentication failed'.
Here is my proxy table :
mysql> select * from tbl_proxy;
+--------------------+-------------+--------------------+
| user ? ? ? ? ? ? ? | host ? ? ? ?| destuser ? ? ? ? ? |
+--------------------+-------------+--------------------+
| christian at mydom.fr | 10.10.100.1 | christian at mydom.fr |
| christian#mydom.fr | 10.10.100.1 | christian at mydom.fr |
+--------------------+-------------+--------------------+
If I login on the Dovecot proxy with the ...
2013 Sep 27
1
proxy: can I use the password returned from passdb to log in to the back-end?
I am hoping to support encrypted passwords, which I know is generally not
allowed in a proxy setup. However, I can return the password in clear-text
out of the password database, so I was hoping for something similar to the
destuser field.
I have successfully used the master password functionality to support
encrypted passwords (users impersonating themselves), as long as the
back-end server supports that. However, I need to proxy POP3 to Gmail,
which does not.
2009 Mar 11
2
dovecot-1.1 not using sieve
hi,
im using the atrpm packages dovecot-1.1.11-0_90.el5 and
dovecot-sieve-1.1.6-9.el5 on a centos5.2 in combination with exim/vexim,
mysql and virtual users.
everything (delivery /sending) seems to work out fine, but i can't use
sieve filters, unfortunately when doing a dovecot -n sieve doesn't show
up anywhere:
# 1.1.11: /etc/dovecot.conf
# OS: Linux 2.6.18-92.1.22.el5 x86_64 CentOS
2018 Sep 17
2
Using both starttls and ssl in passdb on proxy results in timeouts
....p:60524): user=<someuser at example.com>, method=PLAIN, rip=re.mo.te.ip, lip=lo.cal.i.p, TLS, session=<OySXgw12auwgARYIAAYABwAAAAAAAwAU>
My query looks like this:
password_query = SELECT host from proxy_domain, NULL as password, 'y' as nopassword, 'y' as proxy, NULL as destuser, 'y' as proxy_nopipelining, 'y' as nodelay, 'y' as nologin, IF(%{real_lport}=4190, 'any-cert', 'no') as 'starttls', IF(%{real_lport}<>4190, 'any-cert', 'no') as 'ssl?;
As soon as I remove the starttls-part and the passdb o...