本文整理汇总了Python中pykolab.auth.Auth.get_entry_attribute方法的典型用法代码示例。如果您正苦于以下问题:Python Auth.get_entry_attribute方法的具体用法?Python Auth.get_entry_attribute怎么用?Python Auth.get_entry_attribute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pykolab.auth.Auth
的用法示例。
在下文中一共展示了Auth.get_entry_attribute方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Auth
# 需要导入模块: from pykolab.auth import Auth [as 别名]
# 或者: from pykolab.auth.Auth import get_entry_attribute [as 别名]
continue
else:
if not '/'.join(folder.split('/')[0]) == 'shared':
log.info(_("Deleting mailbox '%s' because it has no recipients") % (folder))
try:
imap.dm(folder)
except Exception, errmsg:
log.error(_("An error occurred removing mailbox %r: %r") % (folder, errmsg))
else:
log.info(_("Not automatically deleting shared folder '%s'") % (folder))
else:
log.warning(_("No recipients for '%s' (use --delete to delete)!") % ('/'.join(folder.split('/')[1:])))
continue
else:
mailhost = auth.get_entry_attribute(primary, recipient, 'mailhost')
if not server == mailhost:
if conf.dry_run:
print folder, server, mailhost
else:
auth.set_entry_attribute(primary, recipient, 'mailhost', server)
folders = []
folders.extend(imap.lm("shared/%%"))
folders.extend(imap.lm("user/%%"))
auth = Auth()
auth.connect()
for folder in folders:
示例2: PolicyRequest
# 需要导入模块: from pykolab.auth import Auth [as 别名]
# 或者: from pykolab.auth.Auth import get_entry_attribute [as 别名]
#.........这里部分代码省略.........
recipient = {
'dn': recipients
}
# We have gotten an invalid recipient. We need to catch this case,
# because testing can input invalid recipients, and so can faulty
# applications, or misconfigured servers.
if not recipient['dn']:
if not conf.allow_unauthenticated:
cache_update(
function='verify_recipient',
sender=self.sender,
recipient=recipient,
result=(int)(False),
sasl_username=self.sasl_username,
sasl_sender=self.sasl_sender
)
reject(_("Invalid recipient"))
else:
cache_update(
function='verify_recipient',
sender=self.sender,
recipient=recipient,
result=(int)(True),
sasl_username=self.sasl_username,
sasl_sender=self.sasl_sender
)
log.debug(_("Could not find this user, accepting"), level=8)
return True
if not recipient['dn'] == False:
recipient_policy = self.auth.get_entry_attribute(
sasl_domain,
recipient,
'kolabAllowSMTPSender'
)
# If no such attribute has been specified, allow
if recipient_policy == None:
recipient_verified = True
# Otherwise, parse the policy obtained with the subject of the policy
# being the recipient, and the object to apply the policy to being the
# sender.
else:
recipient_verified = self.parse_policy(
recipient,
self.sender,
recipient_policy
)
cache_update(
function='verify_recipient',
sender=self.sender,
recipient=recipient,
result=(int)(recipient_verified),
sasl_username=self.sasl_username,
sasl_sender=self.sasl_sender
)
return recipient_verified
def verify_recipients(self):
"""