]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Updates the folder input text and adds docs note for how to figure out the folder...
authorTrenton Holmes <holmes.trenton@gmail.com>
Mon, 28 Mar 2022 17:21:14 +0000 (10:21 -0700)
committerTrenton Holmes <holmes.trenton@gmail.com>
Fri, 8 Apr 2022 15:55:40 +0000 (08:55 -0700)
docs/usage_overview.rst
src/paperless_mail/models.py

index 56ff4bc5381189ae8841df5ba8e572ee66175103..e6bb8f31e1b3497688560c4c127f98e90cb82abf 100644 (file)
@@ -178,6 +178,14 @@ These are as follows:
     automatically or manually and tell paperless to move them to yet another folder
     after consumption. It's up to you.
 
+.. note::
+
+    When defining a mail rule with a folder, you may need to try different characters to
+    define how the sub-folders are separated.  Common values include ".", "/" or "|", but
+    this varies by the mail server.  Unfortunately, this isn't a value we can determine
+    automatically.  Either check the documentation for your mail server, or check for
+    errors in the logs and try different folder separator values.
+
 .. note::
 
     Paperless will process the rules in the order defined in the admin page.
index 6d58de4e9e6a0a1f8719c63fd087e1c44051c028..59d4827a4fbe67d74fbfaae2269f31ec593e3efa 100644 (file)
@@ -119,7 +119,10 @@ class MailRule(models.Model):
         _("folder"),
         default="INBOX",
         max_length=256,
-        help_text=_("Subfolders must be separated by dots."),
+        help_text=_(
+            "Subfolders must be separated by a delimiter, often a dot ('.') or "
+            " slash ('/'), but it varies by mail server.",
+        ),
     )
 
     filter_from = models.CharField(