1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
##############################################################################
# ad.list - Configuration for bnetd ad banners #
#----------------------------------------------------------------------------#
# #
# Quotes (") are required around the strings, but they are not allowed #
# inside them. #
# #
# The "file name" field should be in the form llXXXXXX.eee where the X's are #
# the ad id. The ad id is a non-zero hexadecimal number. The files must be #
# in the /usr/share/bnetd directory and no path components should be listed #
# here, only the filename portion. #
# #
# The "when" field determines which ad banners should be picked to start a #
# sequence. These can be used to make the server avoid picking an "answer" #
# banner before its corresponding "question" banner by setting it to "start" #
# or "init". The first banner that is chosen when the user logs in is an #
# "init" banner. These banners are not reused, so you may want to double #
# list them as "start" banners. #
# #
# The "time" field is the number of seconds that the banner should be #
# displayed on the client. If it is zero, the ad will be displayed forever. #
# #
# The "URL" field is the location that the user will be sent to if (s)he #
# clicks on the ad. #
# #
# The "next" field determines which banner will be displayed next. If it is #
# zero, then a start banner may be chosen randomly. #
# #
# --file name-- when- time ---------------URL--------------- --next-- #
#"ad000001.pcx" init 30 "http://www.bnetd.org/" 0x000000
#"ad000001.pcx" start 30 "http://www.bnetd.org/" 0x000000
"ad000002.pcx" init 30 "http://packages.debian.org/bnetd" 0x000000
"ad000002.pcx" start 30 "http://packages.debian.org/bnetd" 0x000000
#"ad000003.pcx" start 30 "http://www.place.edu/~clanpage" 0x000000
#"ad000002.smk" start 30 "http://www.blah.com/" 0x000004
#"ad000004.smk" norm 30 "http://foo.com/" 0x000000
# #
##############################################################################
|