Skip to content
Snippets Groups Projects
Commit f7b7356d authored by ale's avatar ale
Browse files

Drop the domain check for rcpttocheck()

parent 07feabdf
No related branches found
No related tags found
No related merge requests found
...@@ -357,9 +357,6 @@ class Channel(asynchat.async_chat): ...@@ -357,9 +357,6 @@ class Channel(asynchat.async_chat):
if '@' not in to: if '@' not in to:
return 'EERR_513' return 'EERR_513'
name = self.mlistname(to) name = self.mlistname(to)
domain = self.domain(to)
sitedomain = get_domain()
if domain == sitedomain:
if list_exists(name): if list_exists(name):
return return
else: else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment