File: smd-translate.1.txt

package info (click to toggle)
syncmaildir 1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,188 kB
  • sloc: ansic: 6,321; sh: 1,995; makefile: 232; xml: 14
file content (72 lines) | stat: -rw-r--r-- 1,951 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
NAME
  smd-translate - translates mailbox names according to predefined patterns

SYNOPSIS
  smd-translate [-m mode] [-d direction] endpoint mailbox

DESCRIPTION
  smd-translate translates mailbox names according to predefined patterns.
  It is designed to be used in the configuration file of smd-push(1) and
  smd-pull(1).

  Refer to smd-config(5) for a longer discussion on translators.

  Supported modes follow.

  oimap-dovecot  

  This mode is designed to make the transition of offlineimap users to
  smd simpler. It assumes remote mailboxes are named like in the 
  following:
    
    Maildir/cur
    Maildir/.sub.folder/new
    
  The corresponding local mailboxes are named like in the following:
    
    Mail/cur
    Mail/sub.folder/new

  nodots  

  This mode simply gets rid of all dots. It assumes remote mailboxes are 
  named like in the following:
    
    Maildir/cur
    Maildir/.sub.folder/new
    
  The corresponding local mailboxes are named like in the following:
    
    Mail/cur
    Mail/sub/folder/new

  move  

  This mode just replaces the root of the mailbox, i.e. substitutes
  MAILBOX_LOCAL for MAILBOX_REMOTE and viceversa.
    
    
USAGE IN CONFIGURATION FILE
  Assuming the MAILBOX_LOCAL configuration variable is set to Mail
  and the MAILBOX_REMOTE is set to Maildir, one can use the following
  configuration file snippet in ~/.smd/config.endpoint:
  
    TRANSLATOR_RL="smd-translate -m oimap-dovecot -d RL endpoint"
    TRANSLATOR_LR="smd-translate -m oimap-dovecot -d LR endpoint"
    
  To test your setup use the smd-check-conf(1) utility.

OPTIONS
  -m mode       One of the supported modes listed above
  -d direction  One of RL or LR
  endpoint      Is the suffix for the name of the configuration file to use
  mailbox       The mailbox name to translate

FILES
  ~/.smd/config.*

SEE ALSO
  smd-push(1), smd-pull(1), smd-config(5), smd-check-conf(1)

AUTHOR
  Enrico Tassi <gares@fettunta.org>