2023-08-27 16:05:53 +02:00
|
|
|
<?php
|
|
|
|
return [
|
|
|
|
// expire.php
|
|
|
|
'max_articles_per_group' => 10000,
|
|
|
|
|
|
|
|
// spoolnews.php
|
|
|
|
'maxarticles_per_run' => 100,
|
2023-09-18 14:07:20 +02:00
|
|
|
'maxfirstrequest' => 100,
|
|
|
|
|
2024-02-26 14:02:08 +01:00
|
|
|
// Disable spoolnews if less than this num in Gb free for spool
|
|
|
|
'min_spool_disk_space' => 5,
|
|
|
|
|
|
|
|
// If your remote_server is already filtered, enable this
|
|
|
|
'disable_spamassassin_spooling' => true,
|
|
|
|
|
2023-09-18 14:07:20 +02:00
|
|
|
// Display short view of headers (only subject, name, date)
|
2024-02-26 14:02:08 +01:00
|
|
|
'short_headers' => true,
|
|
|
|
|
|
|
|
// Log posts?
|
|
|
|
'enable_post_log' => false,
|
|
|
|
|
2024-03-11 11:15:30 +01:00
|
|
|
// Require authentication for all commands to nntp server
|
|
|
|
'nntp_full_auth_required' => false,
|
|
|
|
|
2024-02-26 14:02:08 +01:00
|
|
|
// Disable name/email spoof option in Configuration
|
|
|
|
'disable_change_name' => false,
|
|
|
|
|
|
|
|
// Disable Message-ID search in header
|
|
|
|
'disable_msgid_search' => false,
|
2024-04-18 13:19:25 +02:00
|
|
|
|
|
|
|
// Display bot count in footer
|
|
|
|
'count_bots' => false,
|
2023-09-18 14:07:20 +02:00
|
|
|
|
2024-03-04 17:47:34 +01:00
|
|
|
// Set default for new registered users to 'show' or 'hide'
|
|
|
|
// Unsubscribed groups (else default is 'hide')
|
|
|
|
// Must be 'show' or 'hide'
|
|
|
|
'hide_unsub' => 'hide',
|
|
|
|
|
2024-03-02 18:54:28 +01:00
|
|
|
// Reserved aliases
|
|
|
|
'reserved_names' => array("admin", "sysop", "rslight"),
|
|
|
|
|
|
|
|
// Users who may have duplicate aliases in aliases.conf
|
|
|
|
'duplicate_aliases' => array("admins user name here"),
|
|
|
|
|
2024-04-02 21:28:26 +02:00
|
|
|
// Disable display of X-Face
|
|
|
|
'disable_xface' => false,
|
2024-04-18 13:19:25 +02:00
|
|
|
|
|
|
|
// Disable immediate post insertion (wait for remote server)
|
|
|
|
// for a SECTION. Comma separated list ex: 'rocksolid,section3,section5',
|
|
|
|
'insert_disable' => 'sectionONE, sectionTWO',
|
2024-04-02 21:28:26 +02:00
|
|
|
|
2024-04-15 12:47:44 +02:00
|
|
|
// Disable posting attachments by section
|
|
|
|
// List section names to disable:
|
|
|
|
// array("sectionONE", "sectionTWO", "sectionETC"),
|
|
|
|
'disable_attach' => array("section"),
|
|
|
|
|
2024-04-26 13:48:28 +02:00
|
|
|
// Default view for overboard ('threads' or 'articles')
|
|
|
|
// If unset, default is 'articles'
|
|
|
|
'overboard_default_view' => 'articles',
|
|
|
|
|
2024-05-03 13:10:39 +02:00
|
|
|
// Disable New Articles link on groups page
|
|
|
|
'overboard_disable_new_link' => false,
|
|
|
|
|
2024-05-08 10:59:27 +02:00
|
|
|
// Disable adding 'X-Rslight-*' headers to
|
|
|
|
// outgoing messages
|
|
|
|
'disable_rslight_headers' => false,
|
|
|
|
|
2024-04-29 17:05:41 +02:00
|
|
|
// Set User-Agent: string (default = 'Rocksolid Light')
|
|
|
|
// Set to '' for no User-Agent: header
|
|
|
|
'user_agent' => 'Rocksolid Light',
|
|
|
|
|
2023-09-18 14:07:20 +02:00
|
|
|
// Just leave this here to avoid comma errors
|
|
|
|
'comma' => true
|
2023-08-27 16:05:53 +02:00
|
|
|
];
|