Sophie

Sophie

distrib > Mandriva > 8.2 > i586 > media > contrib > by-pkgid > 331a6bf34b79ebee0665f953f5e37620 > files > 249

pyrite-0.9.3-4mdk.i586.rpm

/*

  $Id: sample.conf,v 1.3 1999/07/16 05:32:01 rob Exp $

  Sample Pyrite Configuration File

  Copy this to ~/.palm.conf and edit appropriately.

  The system administrator may place a similar file in /etc/palm.conf,
  and it will provide default values.

*/

defaults {
        // The default port to use.
    default-port "/dev/pilot";
        // A list of available ports (separated by commas).
    port "/dev/pilot";
        // Where to put stored data (backups, etc.)
    data-directory "~/Palm";
        // Default username, to be used when no palmtop is connected.
        // (Put your palmtop's user name here.)
    user "John Q. Public";
}

Pyrite {
    // Other packages to search for plug-ins
    // (commented out because it won't work if you don't have the listed
    // packages)
    //
    // plugin-packages { DocToolkit; SomeOtherPackage; }

    Sync {
        // List of conduits, in order.  TimeSync should always be last,
        // in case other conduits (eg. Backup) check timestamps.
        Conduits { Backup; Install; TimeSync; }
    }

    Conduit "Backup" {
        ignore_backup_bit 1;  // If false, only back up files with backup bit set.
        incremental 1;        // If false, back up everything every time.
        debug 0;              // If true, produce lots of debugging output.
        delete_old 1;         // If true, delete old databases from the backup.
        archive 1;            // If true, archive deleted databases.
        exclude {             // List of databases to exclude from backup
            "Some Database Name";
            "Some Other Database Name";
        }
        exclude-regexps {     // Regexps matching names to exclude from backup.
            "(?i)^$";
        }
    }
    
}