/* If you're using the program as an FTP program in an enviroment where
 * you almost always need to open with a user name and password, you
 * might consider turning off anonymous by default.
 */ 
#define UOPEN 0					/* No anon ftp by default? */

/* After compiling the program, you may decide that the curses stuff
 * doesn't perform well.  (It works great on some systems, awful on others).
 * If visual mode doesn't do a good job, you can have visual mode off
 * by default.
 */
#define VISUAL 1

/* Keep user logs by default? */
#define USERLOG 1

/* How long to wait between repeated connection attempts. */
#define REDIALDELAY 60

/* Choose one of: kPrNone, kPrPercent, kPrPhilBar, kPrKBytes, kPrDots. */
#define PROGRESS kPrPhilBar

/* eof */
