{
 "mountbase": "/mnt/droid",                         // where adbfs shall mount your Android device to
 "logfile": "syslog",                               // use this as logfile (unless overridden at command line using the '-l <file>' switch.)
                                                    // Valid options are an empty string or "none" if you want none, "syslog" to use the syslog facility, or a file name.
 "devices": [                                       // all known devices (array of objects)
   {
     "codename": "axolotl",                         // used in logging
     "name": "SHIFT6mq",                            // used in some messages
     "serial": "S6MQ0123453R14L",                   // passed to ADB ("adb -s $serial") to make sure the device is matched
     "enabled": 0,                                  // 0|1; 0=disabled (device will be ignored)
     "sync": [                                      // what shall be synced; this is an array of objects
       {
         "comment": "bidirectional (3) example",    // comment; unused, just for the human editing this file
         "devdir": "/sdcard/Documents/BiDir/",      // directory on the device
         "pcdir": "/home/user/Documents/BiDir/",    // directory on the computer
         "direction": 3,                            // sync direction. Bitwise: 1=from device to computer; 2=computer to device; 3=1+2 (bidirectional, experimental)
         "delete": 0,                               // whether to delete removed files. Same bitwise definition. NOT YET FULLY IMPLEMENTED and thus currently mostly ignored
                                                    // supported: delete:1 with direction:1 (from-device); useful to sync backup dirs fron Seedvault, NeoBackup, TiBu where the apps clean up to keep max n copies
                                                    // plus delete:2 with direction:2 (opposite: to-device). Not enabled for experimental bi-directional sync
         "enabled": 0                               // whether this sync pair should be processed (1) or not (0)
       }
     ]
   },{
     "codename": "fp2",
     "name": "Fairphone 2",
     "serial": "f41r3er",
     "enabled": 1,
     "sync": [
     ]
   }
 ]
}