mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-29 19:25:34 +00:00
Web.de: Postausgang is read-only
This commit is contained in:
parent
a1e8348612
commit
33cff51d26
1 changed files with 3 additions and 0 deletions
|
@ -1145,6 +1145,9 @@ class Core {
|
|||
if (target != folder.id)
|
||||
throw new IllegalArgumentException("Invalid folder");
|
||||
|
||||
if (account != null && account.isWebDe() && "Postausgang".equalsIgnoreCase(folder.name))
|
||||
throw new IllegalArgumentException("'Postausgang' is read-only, use 'Gesendet' instead");
|
||||
|
||||
// External draft might have a uid only
|
||||
if (TextUtils.isEmpty(message.msgid)) {
|
||||
message.msgid = EntityMessage.generateMessageId();
|
||||
|
|
Loading…
Reference in a new issue