annotate docs/sample.gftp/gftprc @ 430:f2bf216a8091

2004-3-17 Brian Masney <masneyb@gftp.org> * docs/gftp-faq.sgml - added SSL Issues section * docs/sample.gftp/gftprc - updated config file that has all of the new options added since 2.0.16 * lib/options.h - disable show_trans_in_title by default
author masneyb
date Wed, 17 Mar 2004 13:44:43 +0000
parents 007145d7d975
children 04aff709924a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
218
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
1 # Config file for gFTP. Copyright (C) 1998-2003 Brian Masney
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
2 # <masneyb@gftp.org>. Warning: Any comments that you add to this file WILL be
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
3 # overwritten. If a entry has a (*) in it's comment, you can't change it
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
4 # inside gFTP
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
5
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
6 # The default program used to view files. If this is blank, the internal file
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
7 # viewer will be used
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
8 view_program=
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
9
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
10 # The default program used to edit files.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
11 edit_program=
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
12
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
13 # The default directory gFTP will go to on startup
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
14 startup_directory=
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
15
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
16 # The maximum size of the log window in bytes for the GTK+ port
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
17 max_log_window_size=5000
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
18
218
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
19 # This is a comma separated list of charsets to try to convert the remote
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
20 # messages to the current locale
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
21 remote_charsets=
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
22
222
007145d7d975 2003-7-11 Brian Masney <masneyb@gftp.org>
masneyb
parents: 219
diff changeset
23 # The number of seconds to keep cache entries before they expire.
007145d7d975 2003-7-11 Brian Masney <masneyb@gftp.org>
masneyb
parents: 219
diff changeset
24 cache_ttl=3600
007145d7d975 2003-7-11 Brian Masney <masneyb@gftp.org>
masneyb
parents: 219
diff changeset
25
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
26 # Append new file transfers onto existing ones
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
27 append_transfers=1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
28
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
29 # Do only one transfer at a time?
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
30 one_transfer=1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
31
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
32 # Overwrite files by default or set to resume file transfers
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
33 overwrite_default=0
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
34
218
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
35 # Preserve file permissions of transfered files
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
36 preserve_permissions=1
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
37
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
38 # Refresh the listbox after each file is transfered
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
39 refresh_files=0
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
40
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
41 # Put the directories first then the files
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
42 sort_dirs_first=1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
43
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
44 # Show hidden files in the listboxes
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
45 show_hidden_files=1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
46
430
f2bf216a8091 2004-3-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 222
diff changeset
47 # Show the file transfer status in the titlebar
f2bf216a8091 2004-3-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 222
diff changeset
48 show_trans_in_title=0
f2bf216a8091 2004-3-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 222
diff changeset
49
f2bf216a8091 2004-3-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 222
diff changeset
50 # Allow entering manual commands in the GUI (functions like the text port)
f2bf216a8091 2004-3-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 222
diff changeset
51 cmd_in_gui=0
f2bf216a8091 2004-3-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 222
diff changeset
52
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
53 # The timeout waiting for network input/output. This is NOT an idle timeout.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
54 network_timeout=120
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
55
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
56 # The number of auto-retries to do. Set this to 0 to retry indefinately
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
57 retries=3
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
58
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
59 # The number of seconds to wait between retries
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
60 sleep_time=30
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
61
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
62 # The maximum KB/s a file transfer can get. (Set to 0 to disable)
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
63 maxkbs=0.00
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
64
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
65 # This specifies the default protocol to use
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
66 default_protocol=FTP
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
67
430
f2bf216a8091 2004-3-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 222
diff changeset
68 # Enable IPv6 support
f2bf216a8091 2004-3-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 222
diff changeset
69 enable_ipv6=1
f2bf216a8091 2004-3-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 222
diff changeset
70
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
71 # This defines what will happen when you double click a file in the file
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
72 # listboxes. 0=View file 1=Edit file 2=Transfer file
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
73 list_dblclk_action=2
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
74
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
75 # The default width of the local files listbox
218
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
76 listbox_local_width=318
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
77
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
78 # The default width of the remote files listbox
218
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
79 listbox_remote_width=320
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
80
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
81 # The default height of the local/remote files listboxes
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
82 listbox_file_height=265
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
83
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
84 # The default height of the transfer listbox
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
85 transfer_height=80
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
86
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
87 # The default height of the logging window
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
88 log_height=105
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
89
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
90 # The width of the filename column in the transfer window. Set this to 0 to
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
91 # have this column automagically resize.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
92 file_trans_column=100
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
93
218
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
94 # The default column to sort by
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
95 local_sortcol=file
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
96
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
97 # Sort ascending or descending
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
98 local_sortasds=ascending
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
99
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
100 # The default column to sort by
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
101 remote_sortcol=file
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
102
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
103 # Sort ascending or descending
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
104 remote_sortasds=ascending
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
105
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
106 # The width of the filename column in the file listboxes. Set this to 0 to
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
107 # have this column automagically resize. Set this to -1 to disable this column
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
108 local_file_width=100
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
109
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
110 # The width of the size column in the file listboxes. Set this to 0 to have
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
111 # this column automagically resize. Set this to -1 to disable this column
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
112 local_size_width=85
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
113
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
114 # The width of the user column in the file listboxes. Set this to 0 to have
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
115 # this column automagically resize. Set this to -1 to disable this column
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
116 local_user_width=75
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
117
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
118 # The width of the group column in the file listboxes. Set this to 0 to have
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
119 # this column automagically resize. Set this to -1 to disable this column
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
120 local_group_width=76
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
121
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
122 # The width of the date column in the file listboxes. Set this to 0 to have
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
123 # this column automagically resize. Set this to -1 to disable this column
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
124 local_date_width=120
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
125
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
126 # The width of the attribs column in the file listboxes. Set this to 0 to have
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
127 # this column automagically resize. Set this to -1 to disable this column
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
128 local_attribs_width=75
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
129
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
130 # The width of the filename column in the file listboxes. Set this to 0 to
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
131 # have this column automagically resize. Set this to -1 to disable this column
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
132 remote_file_width=100
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
133
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
134 # The width of the size column in the file listboxes. Set this to 0 to have
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
135 # this column automagically resize. Set this to -1 to disable this column
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
136 remote_size_width=85
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
137
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
138 # The width of the user column in the file listboxes. Set this to 0 to have
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
139 # this column automagically resize. Set this to -1 to disable this column
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
140 remote_user_width=75
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
141
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
142 # The width of the group column in the file listboxes. Set this to 0 to have
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
143 # this column automagically resize. Set this to -1 to disable this column
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
144 remote_group_width=76
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
145
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
146 # The width of the date column in the file listboxes. Set this to 0 to have
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
147 # this column automagically resize. Set this to -1 to disable this column
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
148 remote_date_width=120
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
149
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
150 # The width of the attribs column in the file listboxes. Set this to 0 to have
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
151 # this column automagically resize. Set this to -1 to disable this column
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
152 remote_attribs_width=75
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
153
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
154 # The color of the commands that are sent to the server
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
155 send_color=0:8600:0
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
156
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
157 # The color of the commands that are received from the server
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
158 recv_color=0:0:ffff
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
159
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
160 # The color of the error messages
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
161 error_color=ffff:0:0
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
162
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
163 # The color of the rest of the log messages
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
164 misc_color=a000:8d00:4600
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
165
218
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
166 # This is the password that will be used whenever you log into a remote FTP
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
167 # server as anonymous
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
168 email=
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
169
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
170 # Firewall hostname
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
171 ftp_proxy_host=
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
172
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
173 # Port to connect to on the firewall
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
174 ftp_proxy_port=21
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
175
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
176 # Your firewall username
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
177 ftp_proxy_username=
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
178
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
179 # Your firewall password
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
180 ftp_proxy_password=
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
181
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
182 # Your firewall account (optional)
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
183 ftp_proxy_account=
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
184
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
185 # This specifies how your proxy server expects us to log in. You can specify a
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
186 # 2 character replacement string prefixed by a % that will be replaced with
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
187 # the proper data. The first character can be either p for proxy or h for the
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
188 # host of the FTP server. The second character can be u (user), p (pass), h
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
189 # (host), o (port) or a (account). For example, to specify the proxy user, you
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
190 # can you type in %pu
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
191 proxy_config=
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
192
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
193 # If this is enabled, then the remote FTP server will open up a port for the
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
194 # data connection. If you are behind a firewall, you will need to enable this.
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
195 # Generally, it is a good idea to keep this enabled unless you are connecting
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
196 # to an older FTP server that doesn't support this. If this is disabled, then
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
197 # gFTP will open up a port on the client side and the remote server will
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
198 # attempt to connect to it.
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
199 passive_transfer=1
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
200
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
201 # The remote FTP server will attempt to resolve symlinks in the directory
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
202 # listings. Generally, this is a good idea to leave enabled. The only time you
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
203 # will want to disable this is if the remote FTP server doesn't support the -L
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
204 # option to LIST
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
205 resolve_symlinks=1
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
206
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
207 # If you are transfering a text file from Windows to UNIX box or vice versa,
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
208 # then you should enable this. Each system represents newlines differently for
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
209 # text files. If you are transfering from UNIX to UNIX, then it is safe to
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
210 # leave this off. If you are downloading binary data, you will want to disable
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
211 # this.
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
212 ascii_transfers=0
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
213
430
f2bf216a8091 2004-3-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 222
diff changeset
214 # SSL entropy file
f2bf216a8091 2004-3-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 222
diff changeset
215 entropy_source=/dev/urandom
f2bf216a8091 2004-3-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 222
diff changeset
216
f2bf216a8091 2004-3-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 222
diff changeset
217 # The maximum number of bytes to seed the SSL engine with
f2bf216a8091 2004-3-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 222
diff changeset
218 entropy_len=1024
f2bf216a8091 2004-3-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 222
diff changeset
219
f2bf216a8091 2004-3-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 222
diff changeset
220 # Verify SSL Peer
f2bf216a8091 2004-3-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 222
diff changeset
221 verify_ssl_peer=1
f2bf216a8091 2004-3-17 Brian Masney <masneyb@gftp.org>
masneyb
parents: 222
diff changeset
222
218
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
223 # Firewall hostname
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
224 http_proxy_host=
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
225
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
226 # Port to connect to on the firewall
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
227 http_proxy_port=80
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
228
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
229 # Your firewall username
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
230 http_proxy_username=
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
231
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
232 # Your firewall password
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
233 http_proxy_password=
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
234
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
235 # Do you want to use HTTP/1.1 or HTTP/1.0
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
236 use_http11=1
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
237
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
238 # The path to the SSH executable
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
239 ssh_prog_name=
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
240
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
241 # Extra parameters to pass to the SSH program
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
242 ssh_extra_params=
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
243
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
244 # Default remote SSH2 sftp-server path
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
245 ssh2_sftp_path=
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
246
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
247 # Require a username/password for SSH connections
219
b9584a877daf 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 218
diff changeset
248 ssh_need_userpass=1
218
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
249
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
250 # Use the ssh-askpass utility to supply the remote password
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
251 ssh_use_askpass=0
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
252
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
253 # Call ssh with the -s sftp flag. This is helpful because you won't have to
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
254 # know the remote path to the remote sftp-server
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
255 sshv2_use_sftp_subsys=0
de6a2e8e51cb 2003-7-9 Brian Masney <masneyb@gftp.org>
masneyb
parents: 143
diff changeset
256
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
257 # This section specifies which hosts are on the local subnet and won't need to
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
258 # go out the proxy server (if available). Syntax: dont_use_proxy=.domain or
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
259 # dont_use_proxy=network number/netmask
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
260
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
261 # ext=file extenstion:XPM file:Ascii or Binary (A or B):viewer program. Note:
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
262 # All arguments except the file extension are optional
2
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
263 ext=.pdf::B:xpdf
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
264 ext=.rpm:rpm.xpm:B:
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
265 ext=.deb:deb.xpm:B:
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
266 ext=.diff:diff.xpm: :
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
267 ext=.htm:world.xpm:A:
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
268 ext=.html:world.xpm:A:
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
269 ext=.xcf:img.xpm:B:
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
270 ext=.psd:img.xpm:B:
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
271 ext=.xpm:img.xpm:B:
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
272 ext=.bmp:img.xpm:B:
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
273 ext=.tif:img.xpm:B:
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
274 ext=.tiff:img.xpm:B:
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
275 ext=.png:img.xpm:B:
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
276 ext=.jpg:img.xpm:B:
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
277 ext=.mp3:sound.xpm:B:
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
278 ext=.mid:sound.xpm:B:
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
279 ext=.wav:sound.xpm:B:
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
280 ext=.bz2:tar.xpm:B:
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
281 ext=.gz:tar.xpm:B:
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
282 ext=.1:man.xpm:B:xman
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
283 ext=.2:man.xpm:B:xman
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
284 ext=.3:man.xpm:B:xman
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
285 ext=.4:man.xpm:B:xman
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
286 ext=.5:man.xpm:B:xman
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
287 ext=.6:man.xpm:B:xman
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
288 ext=.7:man.xpm:B:xman
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
289 ext=.8:man.xpm:B:xman
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
290 ext=.tar:tar.xpm:B:
a171df6764a7 * Fixed crash if you was already transfering a file, and you started another
masneyb
parents: 1
diff changeset
291 ext=.tgz:tar.xpm:B: