Displaying 6 results from an estimated 6 matches for "allowedservice".
Did you mean:
allowedservices
2017 Nov 15
2
Authenticate Postfix through Dovecot with slightly different LDAP settings
...LDAP
settings for Dovecot and Postfix. Current setup:
passdb {
driver = ldap
args = /etc/dovecot/dovecot-ldap.conf.ext
}
userdb {
driver = ldap
args = /etc/dovecot/dovecot-ldap.conf.ext
}
Excerpt from dovecot-ldap.conf.ext:
user_filter = (& \
(objectClass=gosaMailAccount) \
(allowedServices=*I*) \
(uid=%u) \
)
I wanted to have sparate LDAP filters (allowedServices=*I* for Dovecot
and allowedServices=*S* for Postfix), to be able to disable SMTP and
IMAP independently. Does anybody know a way to separate those settings?
Thanks in advance,
Jakob
2012 Aug 24
0
Schema modification with auxiliary class vs builtin class and vbscript
...e situation is the following :
I've successfully created an auxiliary class with an attribute by
following this method :
http://semifershome.free.fr/semifer/index.php?2008/02/12/42-etendre-le-schema-active-directory-classes-attributs-et-display-specifiers
The auxiliary class is "allowedService" and the attribute is
"allowedServiceAttribute".
The following VB script for changing the attribute doesn't run for the
bold line. The first time we run the script we have the following error
but the value of allowedServiceAttribute is successfully setted:
/Erreur : Cet obje...
2012 May 23
1
AD / new auxiliary class / vb script
...auxiliary class (iscA) with an
auxilairy attribute (iscA1).
I've followed this explanation /_*entirely*_/ :
http://semifershome.free.fr/semifer/index.php?2008/02/12/42-etendre-le-schema-active-directory-classes-attributs-et-display-specifiers
I've named the menu item with the same name (AllowedService). By
right-clicking on a AD user then on the menu AllowedService, the
following script is executed and it is intended to modify iscA1
attribute. The script is :
/set args = WScript.arguments
Set user = GetObject(args(0))
temp = InputBox("iscA1 value", "Set iscA1", user.iscA...
2017 Sep 09
2
disable imap for ldap user
no this is not the intented behaviour for thsi attribute.
In general every user can use pop3 but only a few can use imap so what I
want is:
- permit pop3 by default
- check if the attribute is 0 or 1
- depending on the result a user can login with imap protocol
regards
Markus
Am 08.09.2017 um 17:59 schrieb Ralph Seichter:
> On 08.09.2017 17:11, Markus Rosjat wrote:
>
>> I
2017 Nov 15
0
Authenticate Postfix through Dovecot with slightly different LDAP settings
...{
> driver = ldap
> args = /etc/dovecot/dovecot-ldap.conf.ext
> }
> userdb {
> driver = ldap
> args = /etc/dovecot/dovecot-ldap.conf.ext
> }
>
> Excerpt from dovecot-ldap.conf.ext:
>
> user_filter = (& \
> (objectClass=gosaMailAccount) \
> (allowedServices=*I*) \
> (uid=%u) \
> )
>
> I wanted to have sparate LDAP filters (allowedServices=*I* for Dovecot
> and allowedServices=*S* for Postfix), to be able to disable SMTP and
> IMAP independently. Does anybody know a way to separate those settings?
>
> Thanks in advance,
>...
2017 Sep 13
0
disable imap for ldap user
...n the result a user can login with imap protocol
What's the name of the attribute? Maybe you can use %s in the the
pass_filter string. If the name does not contain "imap", you need to
change the logic, e.g. invent a general LDAP attribute deniedService
and set deniedServer=imap
Or AllowedService=imap allowedService=pop3
Or DeniedIMAP=1
> Am 08.09.2017 um 17:59 schrieb Ralph Seichter:
>> On 08.09.2017 17:11, Markus Rosjat wrote:
>>
>>> I have a LDAP dir with an attribute set to 0 or 1 and in my old setup
>>> (a courier server) I used this attribute to map...