Add SubFolders to MBSync conf mode
This commit is contained in:
parent
888627cd2e
commit
faf071ad5a
1 changed files with 44 additions and 9 deletions
|
@ -28,19 +28,54 @@
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(define-generic-mode mbsync-conf-mode
|
(define-generic-mode mbsync-conf-mode
|
||||||
'(?#)
|
'(?#)
|
||||||
'("Path" "MaxSize" "MapInbox" "Flatten" "Trash" "TrashNewOnly"
|
'("Path"
|
||||||
"TrashRemoteNew" "AltMap" "Inbox" "InfoDelimiter" "Host" "Port" "User"
|
"MaxSize"
|
||||||
"Pass" "PassCmd" "Tunnel" "AuthMechs" "SSLType" "SSLVersions"
|
"MapInbox"
|
||||||
"SystemCertificates" "CertificateFile" "PipelineDepth" "Account"
|
"Flatten"
|
||||||
"UseNamespace" "PathDelimiter" "Master" "Slave" "Pattern" "Patterns"
|
"Trash"
|
||||||
"MaxMessages" "ExpireUnread" "Sync" "Create" "Remove" "Expunge"
|
"TrashNewOnly"
|
||||||
"CopyArrivalDate" "SyncState" "Channels" "FSync" "FieldDelimiter"
|
"TrashRemoteNew"
|
||||||
"BufferLimit")
|
"AltMap"
|
||||||
|
"Inbox"
|
||||||
|
"InfoDelimiter"
|
||||||
|
"Host"
|
||||||
|
"Port"
|
||||||
|
"User"
|
||||||
|
"Pass"
|
||||||
|
"PassCmd"
|
||||||
|
"Tunnel"
|
||||||
|
"AuthMechs"
|
||||||
|
"SSLType"
|
||||||
|
"SSLVersions"
|
||||||
|
"SystemCertificates"
|
||||||
|
"CertificateFile"
|
||||||
|
"PipelineDepth"
|
||||||
|
"Account"
|
||||||
|
"UseNamespace"
|
||||||
|
"PathDelimiter"
|
||||||
|
"Master"
|
||||||
|
"Slave"
|
||||||
|
"Pattern"
|
||||||
|
"Patterns"
|
||||||
|
"MaxMessages"
|
||||||
|
"ExpireUnread"
|
||||||
|
"Sync"
|
||||||
|
"Create"
|
||||||
|
"Remove"
|
||||||
|
"Expunge"
|
||||||
|
"CopyArrivalDate"
|
||||||
|
"SyncState"
|
||||||
|
"Channels"
|
||||||
|
"FSync"
|
||||||
|
"FieldDelimiter"
|
||||||
|
"BufferLimit"
|
||||||
|
"SubFolders")
|
||||||
`((,(rx (or "MaildirStore" "IMAPAccount" "IMAPStore" "Channel" "Group"))
|
`((,(rx (or "MaildirStore" "IMAPAccount" "IMAPStore" "Channel" "Group"))
|
||||||
(0 font-lock-keyword-face)
|
(0 font-lock-keyword-face)
|
||||||
(".*" nil nil (0 font-lock-type-face)))
|
(".*" nil nil (0 font-lock-type-face)))
|
||||||
(,(rx (or "yes" "no" "None" "STARTTLS" "IMAPS" "SSLv2" "SSLv3" "Pull" "Push"
|
(,(rx (or "yes" "no" "None" "STARTTLS" "IMAPS" "SSLv2" "SSLv3" "Pull" "Push"
|
||||||
"New" "ReNew" "Delete" "Flags" "All" "Master" "Slave" "Both"))
|
"New" "ReNew" "Delete" "Flags" "All" "Master" "Slave" "Both"
|
||||||
|
"Verbatim" "Maildir++" "Legacy"))
|
||||||
. font-lock-constant-face))
|
. font-lock-constant-face))
|
||||||
'("\\.mbsyncrc\\'")
|
'("\\.mbsyncrc\\'")
|
||||||
nil
|
nil
|
||||||
|
|
Loading…
Add table
Reference in a new issue