VirtualMailManager/catchall.py
changeset 611 8e9b0046bc8f
parent 608 0ed93eb8b364
child 618 d8736bb80bdc
equal deleted inserted replaced
610:b6c4e77046b9 611:8e9b0046bc8f
    72 unusable.
    72 unusable.
    73 Hint: Increase Postfix' virtual_alias_expansion_limit""")
    73 Hint: Increase Postfix' virtual_alias_expansion_limit""")
    74         elif dcount > limit:
    74         elif dcount > limit:
    75             failed = True
    75             failed = True
    76             errmsg = _(
    76             errmsg = _(
    77 u"""Cannot add %(count_new)i new destination(s) to catch-all alias for
    77 u"""Cannot add %(count_new)i new destination(s) to catch-all alias for domain
    78 domain '%(domain)s'. This alias already exceeds its expansion limit (%(count)i/%(limit)i).
    78 '%(domain)s'. This alias already exceeds its expansion limit \
       
    79 (%(count)i/%(limit)i).
    79 So its unusable, all messages addressed to this alias will be bounced.
    80 So its unusable, all messages addressed to this alias will be bounced.
    80 Hint: Delete some destination addresses.""")
    81 Hint: Delete some destination addresses.""")
    81         if failed:
    82         if failed:
    82             raise AErr(errmsg % {'domain': self._domain, 'count': dcount,
    83             raise AErr(errmsg % {'domain': self._domain, 'count': dcount,
    83                                  'limit': limit, 'count_new': count_new},
    84                                  'limit': limit, 'count_new': count_new},