| 
0
 | 
     1 ###############################################################################
 | 
| 
 | 
     2 #
 | 
| 
 | 
     3 # NOFFLE news server config file
 | 
| 
 | 
     4 #
 | 
| 
 | 
     5 ###############################################################################
 | 
| 
 | 
     6 
 | 
| 
 | 
     7 # Remote news server. Format: <hostname>[:<port>] [<user> <pass>]
 | 
| 
 | 
     8 # (<user> and <pass> only for servers with authentication,
 | 
| 
 | 
     9 # the password may not contain white-spaces)
 | 
| 
 | 
    10 
 | 
| 
 | 
    11 server news
 | 
| 
 | 
    12 
 | 
| 
89
 | 
    13 # Don't get *.binaries.* from server 'news'
 | 
| 
 | 
    14 #omitgroups *.binaries.*
 | 
| 
 | 
    15 
 | 
| 
 | 
    16 # Second server
 | 
| 
 | 
    17 # server bins
 | 
| 
 | 
    18 #
 | 
| 
 | 
    19 # Only get binaries groups from server 'bins'
 | 
| 
 | 
    20 # getgroups *.binaries.*
 | 
| 
0
 | 
    21 
 | 
| 
24
 | 
    22 # Mail address for failed postings
 | 
| 
0
 | 
    23 
 | 
| 
 | 
    24 #mail-to root
 | 
| 
 | 
    25 
 | 
| 
 | 
    26 
 | 
| 
 | 
    27 # Never get more than <max-fetch> articles. Discard oldest, if there are more
 | 
| 
 | 
    28 
 | 
| 
 | 
    29 max-fetch 300
 | 
| 
 | 
    30 
 | 
| 
 | 
    31 
 | 
| 
 | 
    32 # Automatically remove groups from fetch list if they have not been
 | 
| 
 | 
    33 # accessed for <n> days.
 | 
| 
 | 
    34 
 | 
| 
 | 
    35 auto-unsubscribe no
 | 
| 
 | 
    36 #auto-unsubscribe-days 30
 | 
| 
 | 
    37 
 | 
| 
 | 
    38 
 | 
| 
 | 
    39 # Parameter for thread mode. Retrieve articles, if they are referencing an
 | 
| 
 | 
    40 # article that has been read within the last <n> days
 | 
| 
 | 
    41 
 | 
| 
 | 
    42 thread-follow-time 7
 | 
| 
 | 
    43 
 | 
| 
 | 
    44 
 | 
| 
 | 
    45 # Timeout for connecting to remote server in seconds.
 | 
| 
 | 
    46 
 | 
| 
 | 
    47 connect-timeout 30
 | 
| 
 | 
    48 
 | 
| 
 | 
    49 
 | 
| 
 | 
    50 # Automatically put groups on fetchlist, if someone accesses them.
 | 
| 
 | 
    51 # Mode can be: full, thread, over
 | 
| 
 | 
    52 
 | 
| 
107
 | 
    53 auto-subscribe yes
 | 
| 
 | 
    54 default-auto-subscribe-mode full
 | 
| 
 | 
    55 #auto-subscribe-mode *.binaries.* over
 | 
| 
0
 | 
    56 
 | 
| 
89
 | 
    57 # Replace Message-ID in posted articles. For generating Message-IDs,
 | 
| 
0
 | 
    58 # the domain name of your system should be a valid domain name.
 | 
| 
 | 
    59 # If you are in a local domain, set it to your provider's domain name.
 | 
| 
 | 
    60 
 | 
| 
 | 
    61 replace-messageid yes
 | 
| 
38
 | 
    62 
 | 
| 
89
 | 
    63 # Post articles to remote groups into the local database immediately
 | 
| 
 | 
    64 # on receipt of article.
 | 
| 
 | 
    65 # post-locally no
 | 
| 
 | 
    66 
 | 
| 
38
 | 
    67 # Set the default expire period in days
 | 
| 
 | 
    68 default-expire 14
 | 
| 
 | 
    69 
 | 
| 
 | 
    70 # Expire all alt.* groups after 2 days, except for alt.oxford.*
 | 
| 
 | 
    71 # expire after 4 days and alt.oxford.talk never expire.
 | 
| 
 | 
    72 #expire alt.oxford.talk 0
 | 
| 
 | 
    73 #expire alt.oxford.* 4
 | 
| 
 | 
    74 #expire alt.* 2
 | 
| 
 | 
    75 
 | 
| 
 | 
    76 # Appearing here, this is equivalent to 'default-expire 20' above. If it
 | 
| 
 | 
    77 # appeared before the other expire lines, all groups would be
 | 
| 
 | 
    78 # expired at 20 days, as it would be the first custom match
 | 
| 
 | 
    79 # for every group.
 | 
| 
 | 
    80 #expire * 20
 |