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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[[]]
= "news.example.com"
= 119
= "Example News Server 1"
# Optional authentication - uncomment if needed
# username = "your_username"
# password = "your_password"
# High-capacity server allows many connections
= 20
# TLS/SSL configuration
= false
= true
[[]]
= "nntp.example.org"
= 119
= "Example News Server 2"
# This server requires authentication
= "testuser"
= "testpass"
# Standard connection limit
= 10
# Plain TCP connection (default)
= false
= true
[[]]
= "secure-news.example.com"
= 563
= "Secure News Server"
# Example with SSL/TLS port and authentication
= "premium_user"
= "secure_password"
# Premium server allows more connections
= 15
# Enable TLS for secure connection (NNTPS)
= true
# Verify server certificates (recommended for production)
= true
# Optional: custom CA certificate
# tls_cert_path = "/path/to/ca-cert.pem"
[[]]
= "localhost"
= 1119
= "Local Test Server"
# No authentication needed for local server
# Limited connections for test server
= 5
= false
= true
# TLS/SSL Configuration Guide:
# - use_tls: Enable TLS/SSL encryption for this server (default: false)
# - tls_verify_cert: Verify server certificates using system certificate store (default: true, STRONGLY recommended)
# - tls_cert_path: Optional path to additional CA certificate file (PEM format)
# Note: This ADDS to system certs, does not replace them
#
# System Certificate Stores by OS:
# - Linux: Uses system CA bundle (usually /etc/ssl/certs)
# - macOS: Uses Security.framework (Keychain)
# - Windows: Uses SChannel (Windows Certificate Store)
#
# Only disable tls_verify_cert for testing/development - it's a security risk!
#
# Note: max_connections defaults to 10 if not specified
# Each server can have different limits based on your provider's restrictions
# Common NNTP ports: 119 (plain), 563 (NNTPS/SSL), 8119 (custom)