mergify[bot]
9175b15d49
Merge pull request #826 from Nebukadneza/reverse_user_alias_pref
...
Reverse the resolution order of user and alias
6 years ago
mergify[bot]
278bcfb13a
Merge pull request #814 from Nebukadneza/fix_delimiter_alias
...
Deliver mails to alias-stripped-of-delimeter, even if catchall exists
6 years ago
Dario Ernst
276dc3ffda
Reverse the resolution order of user and alias
...
Since it’s common for wildcard~ish systems to prefer concrete objects over
wildcards, and aliases can be broad-wildcards (think catchall, %@xxx.tld ), it
may be more intuitive for users that user-names rank higher than aliases. This
makes it impossible for user-names to be unreachable, since they can be
completely overridden by a catchall otherwise.
This changes default behavior, and is not configurable.
closes #815
6 years ago
mergify[bot]
99cd1d714b
Merge pull request #799 from hoellen/fix-domain-negative-values-1
...
don't allow negative values on domain creation/edit
6 years ago
Tim Möhlmann
2567646f47
Merge branch 'master' into fix-domain-negative-values-1
6 years ago
Ionut Filip
50343f354e
Merge remote-tracking branch 'upstream/master' into feat-psql-support
6 years ago
Dario Ernst
b8d1beed29
Simplify alias-wildcard detection to not consider actual % anymore
6 years ago
Dario Ernst
10d2601963
Unsimplify alias precedence handling
...
As discussed with hoellen on matrix, since postfix indeed supports including
the recipient delimiter character in a verbatim alias, we should support so too
— and handle its precedence correctly. The clearer and simpler formulation of
the precedence-clauses are credit to @hoellen. Thanks!
6 years ago
Dario Ernst
ac64a75743
Simplify alias precedence handling; Remove bogus changelog
6 years ago
Dario Ernst
291f8a457b
Deliver mails to alias-stripped-of-delimeter, even if catchall exists
...
This fixes delivery to an alias minus recipient delimiter in cases where a
wildcard alias would also match. For example,
* foo@xxx.tld
* %@xxx.tld
Sending to foo+spam@xxx.tld would get eaten by the catchall before this fix.
Now, the order of alias resolution is made clearer.
closes #813
6 years ago
mergify[bot]
3b5f3af207
Merge pull request #778 from Nebukadneza/fix_recipient_delimiter
...
Attempt stripping recipient delimiter from localpart
6 years ago
Ionut Filip
9077bf7313
Merge remote-tracking branch 'upstream/master' into feat-psql-support
6 years ago
hoellen
dda64fe91e
allow to disable aliases or users for domains and don't allow negativ values on domain creation/edit
6 years ago
Tim Möhlmann
b2823c23b8
Merge remote-tracking branch 'upstream/master' into feat-psql-support
6 years ago
TheLegend875
56f4d4c894
fixed auto-forward
6 years ago
Dario Ernst
c2d45a47fe
Attempt stripping recipient delimiter from localpart
...
Since postfix now asks us for the complete email over podop, which
includes the recipient-delimiter-and-what-follows not stripped, we need
to attempt to find both the verbatim localpart, as well as the localpart
stripped of the delimited part ….
Fixes #755
6 years ago
kaiyou
7e388e472a
Handle relay name as an Idna domain
6 years ago
kaiyou
b8282b1d46
Support named constraints for multiple backends
...
Supporting multiple backends requires that specific sqlite
collations are not used, thus lowercase is applied to all non
case-sensitive columns. However, lowercasing the database requires
temporary disabling foreign key constraints, which is not possible
on SQLite and requires we specify the constraint names.
This migration specific to sqlite and postgresql drops every
constraint, whether it is named or not, and recreates all of them
with known names so we can later disable them.
6 years ago
kaiyou
e022513a94
Fix support for postgres and mysql
6 years ago
kaiyou
a881a1a839
Revert "Make current migrations work with postgresql"
...
This reverts commit 9b9f3731f6
.
6 years ago
kaiyou
76925e82f3
Revert "Implement CIText as NOCASE alternative in postgresql"
...
This reverts commit 0f3c1b9d15
.
6 years ago
kaiyou
f52ae5535c
Revert "Created function for returning email type"
...
This reverts commit 436055f02c
.
6 years ago
kaiyou
f6520eace6
Merge branch 'feat-psql-support' of https://github.com/usrpro/Mailu into usrpro-feat-psql-support
6 years ago
hoellen
8fe9e695f3
prefer non-wildcard aliases over wildcard aliases
6 years ago
hoellen
79768c09f6
fix alias matching behaviour
6 years ago
kaiyou
b6aaf57be1
Merge branch 'refactor-config' of github.com:kaiyou/mailu into refactor-config
6 years ago
kaiyou
d0f07984b0
Merge remote-tracking branch 'upstream/master' into refactor-config
6 years ago
mergify[bot]
37027cfce7
Merge pull request #633 from kaiyou/fix-sender-checks
...
Improve sender checks
6 years ago
Tim Möhlmann
c9df311a0d
Set forward_destination to an empty list
...
The value of `None` resulted in an error, since a list was expected.
6 years ago
Ionut Filip
436055f02c
Created function for returning email type
6 years ago
Tim Möhlmann
0f3c1b9d15
Implement CIText as NOCASE alternative in postgresql
6 years ago
Tim Möhlmann
9b9f3731f6
Make current migrations work with postgresql
6 years ago
Tim Möhlmann
4783e61693
Fix password context
...
Fixes the following error:
```
admin_1 | [2018-11-09 09:44:10,533] ERROR in app: Exception on /internal/auth/email [GET]
admin_1 | Traceback (most recent call last):
admin_1 | File "/usr/lib/python3.6/site-packages/flask/app.py", line 2292, in wsgi_app
admin_1 | response = self.full_dispatch_request()
admin_1 | File "/usr/lib/python3.6/site-packages/flask/app.py", line 1815, in full_dispatch_request
admin_1 | rv = self.handle_user_exception(e)
admin_1 | File "/usr/lib/python3.6/site-packages/flask/app.py", line 1718, in handle_user_exception
admin_1 | reraise(exc_type, exc_value, tb)
admin_1 | File "/usr/lib/python3.6/site-packages/flask/_compat.py", line 35, in reraise
admin_1 | raise value
admin_1 | File "/usr/lib/python3.6/site-packages/flask/app.py", line 1813, in full_dispatch_request
admin_1 | rv = self.dispatch_request()
admin_1 | File "/usr/lib/python3.6/site-packages/flask/app.py", line 1799, in dispatch_request
admin_1 | return self.view_functions[rule.endpoint](**req.view_args)
admin_1 | File "/usr/lib/python3.6/site-packages/flask_limiter/extension.py", line 544, in __inner
admin_1 | return obj(*a, **k)
admin_1 | File "/app/mailu/internal/views/auth.py", line 18, in nginx_authentication
admin_1 | headers = nginx.handle_authentication(flask.request.headers)
admin_1 | File "/app/mailu/internal/nginx.py", line 48, in handle_authentication
admin_1 | if user.check_password(password):
admin_1 | File "/app/mailu/models.py", line 333, in check_password
admin_1 | context = User.pw_context
admin_1 | AttributeError: type object 'User' has no attribute 'pw_context'
```
6 years ago
kaiyou
5b769e23da
Merge branch 'master' into refactor-config
6 years ago
kaiyou
f57d4859f3
Provide an in-context wrapper for getting users
6 years ago
hoellen
680ad4b67a
Catching only ValueError
...
Co-Authored-By: ionutfilip <ionut.philip@gmail.com>
7 years ago
Ionut Filip
6dcc33e390
Fixed admin_1 errors in the logs
...
Fixed errors when trying to log in with an account without domain.
This closes #585
7 years ago
Scott
56fb74c502
Fix typo (duplicate self). Fixes #683
7 years ago
Tim Möhlmann
ed81c076f2
Take out "models" path, as we are already in it
7 years ago
Tim Möhlmann
2d382f2d67
Merge branch 'master' into fix-sender-checks
7 years ago
kaiyou
1fcaef7c7e
Merge branch 'master' into fix-sender-checks
7 years ago
hoellen
72d4fa2bc9
remove empty line from merge conflict
7 years ago
hoellen
857ad50509
Merge branch 'master' into feat-reply-startdate
7 years ago
kaiyou
82069ea3f0
Clean most of the refactored code
7 years ago
kaiyou
fc24426291
First batch of refactoring, using the app factory pattern
7 years ago
kaiyou
01fa179767
Update the user password in database when needed
7 years ago
kaiyou
ed3388ed6e
Merge branch 'master' into feat-reply-startdate
7 years ago
kaiyou
e784556330
Fix an edge case with old values containing None for coma separated lists
7 years ago
kaiyou
5ada669f43
Rebase reply startdate on master
7 years ago
kaiyou
c6846fd8db
Merge branch 'master' into feat-reply-startdate
7 years ago
Thomas Sänger
c8b39c5d4a
support bcrypt and use it as default
7 years ago
kaiyou
508e519a34
Refactor the postfix views and implement sender checks
7 years ago
kaiyou
fcad52b145
Implement a start date filter for autoreply, fixes #362
7 years ago
kaiyou
542793260b
Handle wildcard aliases using podop
7 years ago
kaiyou
7143fb8c47
Implement some basic views for podop
7 years ago
Pierre Jaury
76617a3c97
Store the quota status in database
7 years ago
Pierre Jaury
14687d09ba
Fix announcements for idna domains
7 years ago
kaiyou
7f0447514c
Finish storing the user quota to redis
7 years ago
kaiyou
80893be68b
Add a missing import to dnspython
7 years ago
kaiyou
091369915b
Display the user quota in the admin interface
7 years ago
kaiyou
62d1a0c104
Add a status field to the domain list
7 years ago
Stefan Auditor
d2c6cecca6
Remove is_enabled method and use the enabled attribute instead
7 years ago
Stefan Auditor
5bfdd75738
Respect user enabled flag on user.login
7 years ago
Stefan Auditor
20d6fbae48
Add enabled flag to user model
7 years ago
Scott
2c2a1ed042
Remove stale link to old auto-forward settings. Fixes #450
...
Also update a reference to 'smtp' to use HOST_AUTHSMTP
7 years ago
Stefan Auditor
7f5bd98a2e
Add parameters to database field
7 years ago
Stefan Auditor
93d5254b3f
Add another type decorator for idna email support
7 years ago
Stefan Auditor
792c720c13
Save user email domain_name as idna representation
7 years ago
Stefan Auditor
c40e255f3b
Reset relay columns to string
7 years ago
Stefan Auditor
d9ea64fac7
Import idna library and move code a bit upwards
7 years ago
Stefan Auditor
5a7272ff12
Replace other occurences of domain names with idna
7 years ago
Stefan Auditor
1b666cd25b
Add a sqlalchemy custom type for unicode to idna conersion of domain names
7 years ago
kaiyou
2662abedef
Enable self-service account signup
7 years ago
kaiyou
011e1fa52d
Add an end of vacation field, related to #218
8 years ago
kaiyou
570e90acbc
Move email send features to the User model
8 years ago
kaiyou
689be5f2d9
Move all directories per theme
8 years ago