You've already forked Mailu
							
							
				mirror of
				https://github.com/Mailu/Mailu.git
				synced 2025-10-30 23:37:43 +02:00 
			
		
		
		
	Write an equivalence test for domains, fixes #65
(cherry picked from commit 144f427088)
			
			
This commit is contained in:
		| @@ -90,6 +90,12 @@ class Domain(Base): | ||||
|     def __str__(self): | ||||
|         return self.name | ||||
|  | ||||
|     def __eq__(self, other): | ||||
|         try: | ||||
|             return self.name == other.name | ||||
|         except AttributeError: | ||||
|             return False | ||||
|  | ||||
|  | ||||
| class Email(Base): | ||||
|     """ Abstraction for an email address (localpart and domain). | ||||
|   | ||||
		Reference in New Issue
	
	Block a user