/* * Configuration file */ #ifndef CONFIGFILE_H #define CONFIGFILE_H char *configfile = "# AUTOGENERATED configuration file for wmmaiload\n" "# empty lines or lines begining with # are ignored\n" "# booleans can take the next values : 0 1 true false yes no on off\n" "# and are case insensitive\n" "\n" "# Backlight : boolean\n" "# Default : Off\n" "#\n" "Backlight = %s\n" "\n" "# Color : string (backlight color when backlight is ON)\n" "# Default : #6ec63b\n" "#\n" "Color = %s\n" "\n" "# CheckSize : boolean (use files' size to check for new mails)\n" "# Default : False\n" "#\n" "CheckSize = %s\n" "\n" "# Update interval : integer (seconds)\n" "# Default : 1\n" "#\n" "Interval = %d\n" "\n" "# Command : string (what to do with button 2)\n" "# Default : nothing\n" "#\n" "Command = %s\n" "\n" "# Notify : string (what to do when new mail arrives)\n" "# Default : nothing\n" "#\n" "Notify = %s\n" "\n" "# Blinking enable : boolean\n" "# Default : yes\n" "#\n" "Blink = %s\n" "\n" "# Default box to display : integer (not usefull for only 1 mailbox)\n" "# Default : 0 (first one)\n" "#\n" "DefaultBox = %d\n" "\n" "# Delay between pop3/hotmail and imap checks : integer (in seconds)\n" "# Default : 30\n" "#\n" "CheckDelay = %d\n" "\n" "# Run Notify-command only when switching from 0 new mail to >0\n" "# Default : False\n" "#\n" "RunOnce = %s\n" "\n" "# Mailbox : string of options (filename -- use as many as you have mailboxes)\n" "# Default : nothing\n" "# Format : TYPE FILE-OR-URL [USERNAME] [PASSWORD] [FOLDER]\n" "#\n"; char *mboxline = "Mailbox = %s %s%s%s%s%s%s%s\n"; #endif