Displaying 9 results from an estimated 9 matches for "realus".
Did you mean:
realms
2008 Dec 02
1
func_odbc and hash problem
...ARG1})}
extensions.conf
exten => s,1,Ringing
exten => s,n,Wait(4)
exten => s,n,Answer
exten => s,n,Set(NUMERIS=37037210602)
exten => s,n,Set(HASH(RESULTATAS)=${ODBC_GETNUMBER(${NUMERIS})})
exten => s,n,Verbose(1, Number is ${HASH(RESULTATAS, number)}.)
exten => s,n,Verbose(1, Realus 1 ${HASH(RESULTATAS, real_number1)}.)
exten => s,n,Verbose(1, Realus 2 ${HASH(RESULTATAS, real_number2)}.)
exten => s,n,Verbose(1, Statusas ${HASH(RESULTATAS, status)}.)
And asterisk output is:
== Using SIP RTP CoS mark 5
-- Executing [555 at from-trunk:1] Goto("SIP/sip.call.lt-...
2006 Mar 22
0
weird winbind problem
...nge/response password authentication failed
error code was NT_STATUS_NO_SUCH_USER (0xc0000064)
error messsage was: No such user
Could not authenticate user fakeuser with challenge/response
so this is ok
test 2: existing user with wrong password
-----------------------------------------
wbinfo -a realuser%fakepwd
plaintext password authentication failed
error code was NT_STATUS_WRONG_PASSWORD (0xc000006a)
error messsage was: Wrong Password
Could not authenticate user realuser%fakepwd with plaintext password
challenge/response password authentication failed
error code was NT_STATUS_WRONG_PASSWORD...
2006 Apr 03
1
How to use Master Users.
...}
# LDAP database
passdb ldap {
args = /etc/dovecot/dovecot-ldap.conf
}
...
...
}
dovecot.masterusers:
-------------------
testuser:{plain}testpass
# telnet localhost imap
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
* OK IMAP server ready.
1 login realuser*testuser "testpass"
1 NO Authentication failed.
As you can see I get authentication failed. The log shows it fails for
the 'realuser' that exists in ldap. Any ideas out there? I have the
'testuser' also setup in /etc/passwd.
Thanks
Adam
2014 Jun 17
0
Accessing a user mailbox from another user
...something similar to master password, but for a
user identifying as another regular user, not the "master" one. Do you
know if there already is a way to configure a similar behaviour?
I'm planning to configure an user and authentication backend (maybe
pam) that gets users as <realuser>$<finaluser> and the realuser
password, checks if <realuser> should access to <finaluser> and then
returns <finaluser> mail location to dovecot.
Any idea?
--
Angel L. Mateo Mart?nez
Secci?n de Telem?tica
?rea de Tecnolog?as de la Informaci?n
y las Comunicaciones A...
2014 Oct 25
0
[exim] Some feature
On Fri, 2014-10-24 at 13:35 +0400, ?????? ??????? ??????? wrote:
> Yes. Its worked if i send email to fvl+test at domain.com from fvl at domain.com account, but doesnt work if a i send to another user like realuser+test at domain.com .
> In logs "Unknown user"
What is your Exim configuration syntax for delivering emails to
(a) fvl at domain.com
(b) fvl+test at domain.com
(c) realuser at domain.com
?
What specific configuration are you using for email delivery ?
--
Regards,
Paul....
2007 May 10
1
samba doesn't map to guest account
...(both also with the sec options none,ntlm,ntlmi,ntlmv2,ntlmv2i or smbfs
instead of cifs) and always got "mount error 13 = Permission denied". I
just wanted samba to map me to the guest-account but it wouldn't!!!!
I then tried
mount -t cifs //172.16.0.3/ebooks /mnt/ebooks -o
user=realuser,password=realpass
(where realuser is a privileged user that really exists) and it worked!!
I also tried
mount -t cifs //172.16.0.3/upload /mnt/ebooks -o guest
(where 'upload' has a force user/group option set. Look below in
smb.conf) and it worked!! Yes, it mapped me to the right a...
2020 Oct 20
1
modify dovecot user/pass_queries to deliver to local aliases via dovecot submission, with postfixadmin/sqlite3 tables?
...\
SELECT \
'/data/vmail/%d/%n/Maildir' as home, \
5000 AS uid, \
5000 AS gid, \
('dirsize:storage=' || quota) AS quota \
FROM mailbox WHERE username = '%u' AND active = '1'
It works perfectly for real addresses.
I've setup an alias address, e.g.
REAL: realuser at example.com
ALIAS: aliasuser at example.com
INBOUND email to the ALIAS address -- from the 'net, delivered from postfix via LMTP to dovecot backend -- works fine.
BUT any/all mail from local users TO the ALIAS addr fail at userDB lookup
2020-10-20 12:26:54 lmtp(aliasuser at example.co...
2014 Sep 10
0
master user in ldap?
...er = (&(ObjectClass=person)(sAMAccountName=%
u)(memberOf=CN=Domain Admins,CN=Users,DC=domain,DC=tld))
then i added a passdb as follows
passdb {
driver = ldap
master = yes
args = /etc/dovecot/dovecot-ldap-masteruser.conf.ext
}
and of course the separator.
but when i try to login with
realuser*userinadministratorsgroup passwordofuserinadministratorsgroup
i get authentication failed.
am i missing something?
is it even possible to accomplish such thing? because i didn't see any
example in the wiki, only plain passdb and sql.
thanks in advance
Francesco
2010 Mar 06
5
Quota plugin and SQL
I have read through http://wiki.dovecot.org/Quota/Dict, which suggests a
database schema for using quota. For 1.2, this includes a username,
bytes and messages.
Is there any way to modify the queries used to split out username into
localpart and domain? This would enable me to put the current quota
information in my main mailbox table and display it to users in my admin
interface.
Or