xref: /netbsd-src/external/ibm-public/postfix/dist/mantools/docparam (revision 41fbaed053f8fbfdf9d2a4ee0a7386a3c83f8505)
1*41fbaed0Stron#!/bin/sh
2*41fbaed0Stron
3*41fbaed0Stron# docparam - report what configuration parameters a subsystem documents
4*41fbaed0Stron
5*41fbaed0Stron# Usage: docparam src/mumble/*.c
6*41fbaed0Stron
7*41fbaed0Stronfor name
8*41fbaed0Strondo
9*41fbaed0Stron    sed -n '
10*41fbaed0Stron	/^$/q
11*41fbaed0Stron	/^[^ ]* *\.\IP *"*\\fB\([a-zA-Z0-9_]*\).*/{
12*41fbaed0Stron	    s//\1/
13*41fbaed0Stron	    p
14*41fbaed0Stron	    d
15*41fbaed0Stron	}
16*41fbaed0Stron    ' $name
17*41fbaed0Strondone | awk '
18*41fbaed0Stron
19*41fbaed0StronBEGIN {
20*41fbaed0Stron
21*41fbaed0Stron    # Table generated with: user2var mail_params.h
22*41fbaed0Stron
23*41fbaed0Stron    table["mail_name"] = "var_mail_name"
24*41fbaed0Stron    table["helpful_warnings"] = "var_helpful_warnings"
25*41fbaed0Stron    table["show_user_unknown_table_name"] = "var_show_unk_rcpt_table"
26*41fbaed0Stron    table["notify_classes"] = "var_notify_classes"
27*41fbaed0Stron    table["empty_address_recipient"] = "var_empty_addr"
28*41fbaed0Stron    table["mail_owner"] = "var_mail_owner"
29*41fbaed0Stron    table["mail_owner"] = "var_owner_uid"
30*41fbaed0Stron    table["mail_owner"] = "var_owner_gid"
31*41fbaed0Stron    table["setgid_group"] = "var_sgid_group"
32*41fbaed0Stron    table["setgid_group"] = "var_sgid_gid"
33*41fbaed0Stron    table["default_privs"] = "var_default_privs"
34*41fbaed0Stron    table["default_privs"] = "var_default_uid"
35*41fbaed0Stron    table["default_privs"] = "var_default_gid"
36*41fbaed0Stron    table["myorigin"] = "var_myorigin"
37*41fbaed0Stron    table["mydestination"] = "var_mydest"
38*41fbaed0Stron    table["myhostname"] = "var_myhostname"
39*41fbaed0Stron    table["mydomain"] = "var_mydomain"
40*41fbaed0Stron    table["local_transport"] = "var_local_transport"
41*41fbaed0Stron    table["bounce_notice_recipient"] = "var_bounce_rcpt"
42*41fbaed0Stron    table["2bounce_notice_recipient"] = "var_2bounce_rcpt"
43*41fbaed0Stron    table["delay_notice_recipient"] = "var_delay_rcpt"
44*41fbaed0Stron    table["error_notice_recipient"] = "var_error_rcpt"
45*41fbaed0Stron    table["inet_interfaces"] = "var_inet_interfaces"
46*41fbaed0Stron    table["proxy_interfaces"] = "var_proxy_interfaces"
47*41fbaed0Stron    table["masquerade_domains"] = "var_masq_domains"
48*41fbaed0Stron    table["masquerade_exceptions"] = "var_masq_exceptions"
49*41fbaed0Stron    table["masquerade_classes"] = "var_masq_classes"
50*41fbaed0Stron    table["relayhost"] = "var_relayhost"
51*41fbaed0Stron    table["fallback_relay"] = "var_fallback_relay"
52*41fbaed0Stron    table["disable_dns_lookups"] = "var_disable_dns"
53*41fbaed0Stron    table["smtp_host_lookup"] = "var_smtp_dns_lookup"
54*41fbaed0Stron    table["smtp_mx_address_limit"] = "var_smtp_mxaddr_limit"
55*41fbaed0Stron    table["smtp_mx_session_limit"] = "var_smtp_mxsess_limit"
56*41fbaed0Stron    table["queue_directory"] = "var_queue_dir"
57*41fbaed0Stron    table["daemon_directory"] = "var_daemon_dir"
58*41fbaed0Stron    table["command_directory"] = "var_command_dir"
59*41fbaed0Stron    table["process_id_directory"] = "var_pid_dir"
60*41fbaed0Stron    table["process_id_directory"] = "var_starttime"
61*41fbaed0Stron    table["config_directory"] = "var_config_dir"
62*41fbaed0Stron    table["alternate_config_directories"] = "var_config_dirs"
63*41fbaed0Stron    table["default_database_type"] = "var_db_type"
64*41fbaed0Stron    table["syslog_facility"] = "var_syslog_facility"
65*41fbaed0Stron    table["always_bcc"] = "var_always_bcc"
66*41fbaed0Stron    table["undisclosed_recipients_header"] = "var_rcpt_witheld"
67*41fbaed0Stron    table["strict_rfc821_envelopes"] = "var_strict_rfc821_env"
68*41fbaed0Stron    table["broken_sasl_auth_clients"] = "var_broken_auth_clients"
69*41fbaed0Stron    table["disable_vrfy_command"] = "var_disable_vrfy_cmd"
70*41fbaed0Stron    table["virtual_alias_maps"] = "var_virt_alias_maps"
71*41fbaed0Stron    table["virtual_alias_domains"] = "var_virt_alias_doms"
72*41fbaed0Stron    table["unknown_virtual_alias_reject_code"] = "var_virt_alias_code"
73*41fbaed0Stron    table["canonical_maps"] = "var_canonical_maps"
74*41fbaed0Stron    table["sender_canonical_maps"] = "var_send_canon_maps"
75*41fbaed0Stron    table["recipient_canonical_maps"] = "var_rcpt_canon_maps"
76*41fbaed0Stron    table["sender_bcc_maps"] = "var_send_bcc_maps"
77*41fbaed0Stron    table["recipient_bcc_maps"] = "var_rcpt_bcc_maps"
78*41fbaed0Stron    table["transport_maps"] = "var_transport_maps"
79*41fbaed0Stron    table["default_transport"] = "var_def_transport"
80*41fbaed0Stron    table["swap_bangpath"] = "var_swap_bangpath"
81*41fbaed0Stron    table["append_at_myorigin"] = "var_append_at_myorigin"
82*41fbaed0Stron    table["append_dot_mydomain"] = "var_append_dot_mydomain"
83*41fbaed0Stron    table["allow_percent_hack"] = "var_percent_hack"
84*41fbaed0Stron    table["alias_maps"] = "var_alias_maps"
85*41fbaed0Stron    table["biff"] = "var_biff"
86*41fbaed0Stron    table["allow_mail_to_commands"] = "var_allow_commands"
87*41fbaed0Stron    table["command_time_limit"] = "var_command_maxtime"
88*41fbaed0Stron    table["allow_mail_to_files"] = "var_allow_files"
89*41fbaed0Stron    table["local_command_shell"] = "var_local_cmd_shell"
90*41fbaed0Stron    table["alias_database"] = "var_alias_db_map"
91*41fbaed0Stron    table["luser_relay"] = "var_luser_relay"
92*41fbaed0Stron    table["mail_spool_directory"] = "var_mail_spool_dir"
93*41fbaed0Stron    table["home_mailbox"] = "var_home_mailbox"
94*41fbaed0Stron    table["mailbox_command"] = "var_mailbox_command"
95*41fbaed0Stron    table["mailbox_command_maps"] = "var_mailbox_cmd_maps"
96*41fbaed0Stron    table["mailbox_transport"] = "var_mailbox_transport"
97*41fbaed0Stron    table["fallback_transport"] = "var_fallback_transport"
98*41fbaed0Stron    table["forward_path"] = "var_forward_path"
99*41fbaed0Stron    table["mailbox_delivery_lock"] = "var_mailbox_lock"
100*41fbaed0Stron    table["mailbox_size_limit"] = "var_mailbox_limit"
101*41fbaed0Stron    table["propagate_unmatched_extensions"] = "var_prop_extension"
102*41fbaed0Stron    table["recipient_delimiter"] = "var_rcpt_delim"
103*41fbaed0Stron    table["command_expansion_filter"] = "var_cmd_exp_filter"
104*41fbaed0Stron    table["forward_expansion_filter"] = "var_fwd_exp_filter"
105*41fbaed0Stron    table["prepend_delivered_header"] = "var_deliver_hdr"
106*41fbaed0Stron    table["enable_original_recipient"] = "var_enable_orcpt"
107*41fbaed0Stron    table["enable_errors_to"] = "var_enable_errors_to"
108*41fbaed0Stron    table["expand_owner_alias"] = "var_exp_own_alias"
109*41fbaed0Stron    table["require_home_directory"] = "var_stat_home_dir"
110*41fbaed0Stron    table["duplicate_filter_limit"] = "var_dup_filter_limit"
111*41fbaed0Stron    table["relocated_maps"] = "var_relocated_maps"
112*41fbaed0Stron    table["minimal_backoff_time"] = "var_min_backoff_time"
113*41fbaed0Stron    table["maximal_backoff_time"] = "var_max_backoff_time"
114*41fbaed0Stron    table["maximal_queue_lifetime"] = "var_max_queue_time"
115*41fbaed0Stron    table["bounce_queue_lifetime"] = "var_dsn_queue_time"
116*41fbaed0Stron    table["delay_warning_time"] = "var_delay_warn_time"
117*41fbaed0Stron    table["qmgr_message_active_limit"] = "var_qmgr_active_limit"
118*41fbaed0Stron    table["qmgr_message_recipient_limit"] = "var_qmgr_rcpt_limit"
119*41fbaed0Stron    table["qmgr_message_recipient_minimum"] = "var_qmgr_msg_rcpt_limit"
120*41fbaed0Stron    table["default_recipient_limit"] = "var_xport_rcpt_limit"
121*41fbaed0Stron    table["default_extra_recipient_limit"] = "var_stack_rcpt_limit"
122*41fbaed0Stron    table["default_delivery_slot_cost"] = "var_delivery_slot_cost"
123*41fbaed0Stron    table["default_delivery_slot_loan"] = "var_delivery_slot_loan"
124*41fbaed0Stron    table["default_delivery_slot_discount"] = "var_delivery_slot_discount"
125*41fbaed0Stron    table["default_minimum_delivery_slots"] = "var_min_delivery_slots"
126*41fbaed0Stron    table["qmgr_fudge_factor"] = "var_qmgr_fudge"
127*41fbaed0Stron    table["initial_destination_concurrency"] = "var_init_dest_concurrency"
128*41fbaed0Stron    table["default_destination_concurrency_limit"] = "var_dest_con_limit"
129*41fbaed0Stron    table["local"] = "var_local_con_lim"
130*41fbaed0Stron    table["default_destination_recipient_limit"] = "var_dest_rcpt_limit"
131*41fbaed0Stron    table["local"] = "var_local_rcpt_lim"
132*41fbaed0Stron    table["transport_retry_time"] = "var_transport_retry_time"
133*41fbaed0Stron    table["defer_transports"] = "var_defer_xports"
134*41fbaed0Stron    table["qmgr_clog_warn_time"] = "var_qmgr_clog_warn_time"
135*41fbaed0Stron    table["default_process_limit"] = "var_proc_limit"
136*41fbaed0Stron    table["service_throttle_time"] = "var_throttle_time"
137*41fbaed0Stron    table["max_use"] = "var_use_limit"
138*41fbaed0Stron    table["max_idle"] = "var_idle_limit"
139*41fbaed0Stron    table["application_event_drain_time"] = "var_event_drain"
140*41fbaed0Stron    table["ipc_idle"] = "var_ipc_idle_limit"
141*41fbaed0Stron    table["ipc_ttl"] = "var_ipc_ttl_limit"
142*41fbaed0Stron    table["line_length_limit"] = "var_line_limit"
143*41fbaed0Stron    table["debug_peer_list"] = "var_debug_peer_list"
144*41fbaed0Stron    table["debug_peer_level"] = "var_debug_peer_level"
145*41fbaed0Stron    table["hash_queue_names"] = "var_hash_queue_names"
146*41fbaed0Stron    table["hash_queue_depth"] = "var_hash_queue_depth"
147*41fbaed0Stron    table["best_mx_transport"] = "var_bestmx_transp"
148*41fbaed0Stron    table["smtp_connect_timeout"] = "var_smtp_conn_tmout"
149*41fbaed0Stron    table["smtp_helo_timeout"] = "var_smtp_helo_tmout"
150*41fbaed0Stron    table["smtp_xforward_timeout"] = "var_smtp_xfwd_tmout"
151*41fbaed0Stron    table["smtp_mail_timeout"] = "var_smtp_mail_tmout"
152*41fbaed0Stron    table["smtp_rcpt_timeout"] = "var_smtp_rcpt_tmout"
153*41fbaed0Stron    table["smtp_data_init_timeout"] = "var_smtp_data0_tmout"
154*41fbaed0Stron    table["smtp_data_xfer_timeout"] = "var_smtp_data1_tmout"
155*41fbaed0Stron    table["smtp_data_done_timeout"] = "var_smtp_data2_tmout"
156*41fbaed0Stron    table["smtp_rset_timeout"] = "var_smtp_rset_tmout"
157*41fbaed0Stron    table["smtp_quit_timeout"] = "var_smtp_quit_tmout"
158*41fbaed0Stron    table["smtp_quote_rfc821_envelope"] = "var_smtp_quote_821_env"
159*41fbaed0Stron    table["smtp_skip_4xx_greeting"] = "var_smtp_skip_4xx_greeting"
160*41fbaed0Stron    table["smtp_skip_5xx_greeting"] = "var_smtp_skip_5xx_greeting"
161*41fbaed0Stron    table["ignore_mx_lookup_error"] = "var_ign_mx_lookup_err"
162*41fbaed0Stron    table["smtp_skip_quit_response"] = "var_skip_quit_resp"
163*41fbaed0Stron    table["smtp_always_send_ehlo"] = "var_smtp_always_ehlo"
164*41fbaed0Stron    table["smtp_never_send_ehlo"] = "var_smtp_never_ehlo"
165*41fbaed0Stron    table["smtp_bind_address"] = "var_smtp_bind_addr"
166*41fbaed0Stron    table["smtp_helo_name"] = "var_smtp_helo_name"
167*41fbaed0Stron    table["smtp_randomize_addresses"] = "var_smtp_rand_addr"
168*41fbaed0Stron    table["smtp_line_length_limit"] = "var_smtp_line_limit"
169*41fbaed0Stron    table["smtp_pix_workaround_threshold_time"] = "var_smtp_pix_thresh"
170*41fbaed0Stron    table["smtp_pix_workaround_delay_time"] = "var_smtp_pix_delay"
171*41fbaed0Stron    table["smtp_defer_if_no_mx_address_found"] = "var_smtp_defer_mxaddr"
172*41fbaed0Stron    table["smtp_send_xforward_command"] = "var_smtp_send_xforward"
173*41fbaed0Stron    table["smtpd_banner"] = "var_smtpd_banner"
174*41fbaed0Stron    table["smtpd_timeout"] = "var_smtpd_tmout"
175*41fbaed0Stron    table["smtpd_recipient_limit"] = "var_smtpd_rcpt_limit"
176*41fbaed0Stron    table["smtpd_soft_error_limit"] = "var_smtpd_soft_erlim"
177*41fbaed0Stron    table["smtpd_hard_error_limit"] = "var_smtpd_hard_erlim"
178*41fbaed0Stron    table["smtpd_error_sleep_time"] = "var_smtpd_err_sleep"
179*41fbaed0Stron    table["smtpd_junk_command_limit"] = "var_smtpd_junk_cmd_limit"
180*41fbaed0Stron    table["smtpd_history_flush_threshold"] = "var_smtpd_hist_thrsh"
181*41fbaed0Stron    table["smtpd_noop_commands"] = "var_smtpd_noop_cmds"
182*41fbaed0Stron    table["smtpd_sasl_auth_enable"] = "var_smtpd_sasl_enable"
183*41fbaed0Stron    table["smtpd_sasl_security_options"] = "var_smtpd_sasl_opts"
184*41fbaed0Stron    table["smtpd_sasl_application_name"] = "var_smtpd_sasl_appname"
185*41fbaed0Stron    table["smtpd_sasl_local_domain"] = "var_smtpd_sasl_realm"
186*41fbaed0Stron    table["smtpd_sender_login_maps"] = "var_smtpd_snd_auth_maps"
187*41fbaed0Stron    table["smtp_sasl_auth_enable"] = "var_smtp_sasl_enable"
188*41fbaed0Stron    table["smtp_sasl_mechanism_filter"] = "var_smtp_sasl_mechs"
189*41fbaed0Stron    table["smtp_sasl_password_maps"] = "var_smtp_sasl_passwd"
190*41fbaed0Stron    table["smtp_sasl_security_options"] = "var_smtp_sasl_opts"
191*41fbaed0Stron    table["lmtpd_banner"] = "var_lmtpd_banner"
192*41fbaed0Stron    table["lmtpd_timeout"] = "var_lmtpd_tmout"
193*41fbaed0Stron    table["lmtpd_recipient_limit"] = "var_lmtpd_rcpt_limit"
194*41fbaed0Stron    table["lmtpd_soft_error_limit"] = "var_lmtpd_soft_erlim"
195*41fbaed0Stron    table["lmtpd_hard_error_limit"] = "var_lmtpd_hard_erlim"
196*41fbaed0Stron    table["lmtpd_error_sleep_time"] = "var_lmtpd_err_sleep"
197*41fbaed0Stron    table["lmtpd_junk_command_limit"] = "var_lmtpd_junk_cmd_limit"
198*41fbaed0Stron    table["smtpd_sasl_exceptions_networks"] = "var_smtpd_sasl_exceptions_networks"
199*41fbaed0Stron    table["lmtpd_sasl_auth_enable"] = "var_lmtpd_sasl_enable"
200*41fbaed0Stron    table["lmtpd_sasl_security_options"] = "var_lmtpd_sasl_opts"
201*41fbaed0Stron    table["lmtpd_sasl_local_domain"] = "var_lmtpd_sasl_realm"
202*41fbaed0Stron    table["lmtp_sasl_auth_enable"] = "var_lmtp_sasl_enable"
203*41fbaed0Stron    table["lmtp_sasl_password_maps"] = "var_lmtp_sasl_passwd"
204*41fbaed0Stron    table["lmtp_sasl_security_options"] = "var_lmtp_sasl_opts"
205*41fbaed0Stron    table["lmtp_tcp_port"] = "var_lmtp_tcp_port"
206*41fbaed0Stron    table["lmtp_cache_connection"] = "var_lmtp_cache_conn"
207*41fbaed0Stron    table["lmtp_skip_quit_response"] = "var_lmtp_skip_quit_resp"
208*41fbaed0Stron    table["lmtp_connect_timeout"] = "var_lmtp_conn_tmout"
209*41fbaed0Stron    table["lmtp_rset_timeout"] = "var_lmtp_rset_tmout"
210*41fbaed0Stron    table["lmtp_lhlo_timeout"] = "var_lmtp_lhlo_tmout"
211*41fbaed0Stron    table["lmtp_xforward_timeout"] = "var_lmtp_xfwd_tmout"
212*41fbaed0Stron    table["lmtp_mail_timeout"] = "var_lmtp_mail_tmout"
213*41fbaed0Stron    table["lmtp_rcpt_timeout"] = "var_lmtp_rcpt_tmout"
214*41fbaed0Stron    table["lmtp_data_init_timeout"] = "var_lmtp_data0_tmout"
215*41fbaed0Stron    table["lmtp_data_xfer_timeout"] = "var_lmtp_data1_tmout"
216*41fbaed0Stron    table["lmtp_data_done_timeout"] = "var_lmtp_data2_tmout"
217*41fbaed0Stron    table["lmtp_quit_timeout"] = "var_lmtp_quit_tmout"
218*41fbaed0Stron    table["lmtp_send_xforward_command"] = "var_lmtp_send_xforward"
219*41fbaed0Stron    table["hopcount_limit"] = "var_hopcount_limit"
220*41fbaed0Stron    table["header_size_limit"] = "var_header_limit"
221*41fbaed0Stron    table["header_address_token_limit"] = "var_token_limit"
222*41fbaed0Stron    table["virtual_alias_recursion_limit"] = "var_virt_recur_limit"
223*41fbaed0Stron    table["virtual_alias_expansion_limit"] = "var_virt_expan_limit"
224*41fbaed0Stron    table["message_size_limit"] = "var_message_limit"
225*41fbaed0Stron    table["queue_minfree"] = "var_queue_minfree"
226*41fbaed0Stron    table["header_checks"] = "var_header_checks"
227*41fbaed0Stron    table["mime_header_checks"] = "var_mimehdr_checks"
228*41fbaed0Stron    table["nested_header_checks"] = "var_nesthdr_checks"
229*41fbaed0Stron    table["body_checks"] = "var_body_checks"
230*41fbaed0Stron    table["body_checks_size_limit"] = "var_body_check_len"
231*41fbaed0Stron    table["bounce_size_limit"] = "var_bounce_limit"
232*41fbaed0Stron    table["double_bounce_sender"] = "var_double_bounce_sender"
233*41fbaed0Stron    table["fork_attempts"] = "var_fork_tries"
234*41fbaed0Stron    table["fork_delay"] = "var_fork_delay"
235*41fbaed0Stron    table["deliver_lock_attempts"] = "var_flock_tries"
236*41fbaed0Stron    table["deliver_lock_delay"] = "var_flock_delay"
237*41fbaed0Stron    table["stale_lock_time"] = "var_flock_stale"
238*41fbaed0Stron    table["sun_mailtool_compatibility"] = "var_mailtool_compat"
239*41fbaed0Stron    table["daemon_timeout"] = "var_daemon_timeout"
240*41fbaed0Stron    table["ipc_timeout"] = "var_ipc_timeout"
241*41fbaed0Stron    table["trigger_timeout"] = "var_trigger_timeout"
242*41fbaed0Stron    table["mynetworks"] = "var_mynetworks"
243*41fbaed0Stron    table["mynetworks_style"] = "var_mynetworks_style"
244*41fbaed0Stron    table["relay_domains"] = "var_relay_domains"
245*41fbaed0Stron    table["relay_transport"] = "var_relay_transport"
246*41fbaed0Stron    table["relay_recipient_maps"] = "var_relay_rcpt_maps"
247*41fbaed0Stron    table["unknown_relay_recipient_reject_code"] = "var_relay_rcpt_code"
248*41fbaed0Stron    table["smtpd_client_restrictions"] = "var_client_checks"
249*41fbaed0Stron    table["smtpd_helo_required"] = "var_helo_required"
250*41fbaed0Stron    table["smtpd_helo_restrictions"] = "var_helo_checks"
251*41fbaed0Stron    table["smtpd_sender_restrictions"] = "var_mail_checks"
252*41fbaed0Stron    table["smtpd_recipient_restrictions"] = "var_rcpt_checks"
253*41fbaed0Stron    table["smtpd_etrn_restrictions"] = "var_etrn_checks"
254*41fbaed0Stron    table["smtpd_data_restrictions"] = "var_data_checks"
255*41fbaed0Stron    table["smtpd_restriction_classes"] = "var_rest_classes"
256*41fbaed0Stron    table["allow_untrusted_routing"] = "var_allow_untrust_route"
257*41fbaed0Stron    table["reject_code"] = "var_reject_code"
258*41fbaed0Stron    table["defer_code"] = "var_defer_code"
259*41fbaed0Stron    table["unknown_client_reject_code"] = "var_unk_client_code"
260*41fbaed0Stron    table["invalid_hostname_reject_code"] = "var_bad_name_code"
261*41fbaed0Stron    table["unknown_hostname_reject_code"] = "var_unk_name_code"
262*41fbaed0Stron    table["non_fqdn_reject_code"] = "var_non_fqdn_code"
263*41fbaed0Stron    table["unknown_address_reject_code"] = "var_unk_addr_code"
264*41fbaed0Stron    table["smtpd_reject_unlisted_sender"] = "var_smtpd_rej_unl_from"
265*41fbaed0Stron    table["smtpd_reject_unlisted_recipient"] = "var_smtpd_rej_unl_rcpt"
266*41fbaed0Stron    table["unverified_recipient_reject_code"] = "var_unv_rcpt_code"
267*41fbaed0Stron    table["unverified_sender_reject_code"] = "var_unv_from_code"
268*41fbaed0Stron    table["multi_recipient_bounce_reject_code"] = "var_mul_rcpt_code"
269*41fbaed0Stron    table["relay_domains_reject_code"] = "var_relay_code"
270*41fbaed0Stron    table["permit_mx_backup_networks"] = "var_perm_mx_networks"
271*41fbaed0Stron    table["access_map_reject_code"] = "var_access_map_code"
272*41fbaed0Stron    table["rbl_reply_maps"] = "var_rbl_reply_maps"
273*41fbaed0Stron    table["default_rbl_reply"] = "var_def_rbl_reply"
274*41fbaed0Stron    table["maps_rbl_reject_code"] = "var_maps_rbl_code"
275*41fbaed0Stron    table["maps_rbl_domains"] = "var_maps_rbl_domains"
276*41fbaed0Stron    table["smtpd_delay_reject"] = "var_smtpd_delay_reject"
277*41fbaed0Stron    table["smtpd_null_access_lookup_key"] = "var_smtpd_null_key"
278*41fbaed0Stron    table["smtpd_expansion_filter"] = "var_smtpd_exp_filter"
279*41fbaed0Stron    table["local_recipient_maps"] = "var_local_rcpt_maps"
280*41fbaed0Stron    table["unknown_local_recipient_reject_code"] = "var_local_rcpt_code"
281*41fbaed0Stron    table["proxy_read_maps"] = "var_proxy_read_maps"
282*41fbaed0Stron    table["process_name"] = "var_procname"
283*41fbaed0Stron    table["process_id"] = "var_pid"
284*41fbaed0Stron    table["dont_remove"] = "var_dont_remove"
285*41fbaed0Stron    table["soft_bounce"] = "var_soft_bounce"
286*41fbaed0Stron    table["owner_request_special"] = "var_ownreq_special"
287*41fbaed0Stron    table["allow_min_user"] = "var_allow_min_user"
288*41fbaed0Stron    table["content_filter"] = "var_filter_xport"
289*41fbaed0Stron    table["fast_flush_domains"] = "var_fflush_domains"
290*41fbaed0Stron    table["fast_flush_purge_time"] = "var_fflush_purge"
291*41fbaed0Stron    table["fast_flush_refresh_time"] = "var_fflush_refresh"
292*41fbaed0Stron    table["import_environment"] = "var_import_environ"
293*41fbaed0Stron    table["export_environment"] = "var_export_environ"
294*41fbaed0Stron    table["virtual_transport"] = "var_virt_transport"
295*41fbaed0Stron    table["virtual_mailbox_maps"] = "var_virt_mailbox_maps"
296*41fbaed0Stron    table["virtual_mailbox_domains"] = "var_virt_mailbox_doms"
297*41fbaed0Stron    table["unknown_virtual_mailbox_reject_code"] = "var_virt_mailbox_code"
298*41fbaed0Stron    table["virtual_uid_maps"] = "var_virt_uid_maps"
299*41fbaed0Stron    table["virtual_gid_maps"] = "var_virt_gid_maps"
300*41fbaed0Stron    table["virtual_minimum_uid"] = "var_virt_minimum_uid"
301*41fbaed0Stron    table["virtual_mailbox_base"] = "var_virt_mailbox_base"
302*41fbaed0Stron    table["virtual_mailbox_limit"] = "var_virt_mailbox_limit"
303*41fbaed0Stron    table["virtual_mailbox_lock"] = "var_virt_mailbox_lock"
304*41fbaed0Stron    table["syslog_name"] = "var_syslog_name"
305*41fbaed0Stron    table["qmqpd_authorized_clients"] = "var_qmqpd_clients"
306*41fbaed0Stron    table["qmqpd_timeout"] = "var_qmqpd_timeout"
307*41fbaed0Stron    table["qmqpd_error_delay"] = "var_qmqpd_err_sleep"
308*41fbaed0Stron    table["default_verp_delimiters"] = "var_verp_delims"
309*41fbaed0Stron    table["verp_delimiter_filter"] = "var_verp_filter"
310*41fbaed0Stron    table["disable_verp_bounces"] = "var_verp_bounce_off"
311*41fbaed0Stron    table["smtpd_authorized_verp_clients"] = "var_verp_clients"
312*41fbaed0Stron    table["smtpd_authorized_xclient_hosts"] = "var_xclient_hosts"
313*41fbaed0Stron    table["smtpd_authorized_xforward_hosts"] = "var_xforward_hosts"
314*41fbaed0Stron    table["in_flow_delay"] = "var_in_flow_delay"
315*41fbaed0Stron    table["parent_domain_matches_subdomains"] = "var_par_dom_match"
316*41fbaed0Stron    table["fault_injection_code"] = "var_fault_inj_code"
317*41fbaed0Stron    table["resolve_dequoted_address"] = "var_resolve_dequoted"
318*41fbaed0Stron    table["bounce_service_name"] = "var_bounce_service"
319*41fbaed0Stron    table["cleanup_service_name"] = "var_cleanup_service"
320*41fbaed0Stron    table["defer_service_name"] = "var_defer_service"
321*41fbaed0Stron    table["pickup_service_name"] = "var_pickup_service"
322*41fbaed0Stron    table["queue_service_name"] = "var_queue_service"
323*41fbaed0Stron    table["rewrite_service_name"] = "var_rewrite_service"
324*41fbaed0Stron    table["showq_service_name"] = "var_showq_service"
325*41fbaed0Stron    table["error_service_name"] = "var_error_service"
326*41fbaed0Stron    table["flush_service_name"] = "var_flush_service"
327*41fbaed0Stron    table["address_verify_service_name"] = "var_verify_service"
328*41fbaed0Stron    table["address_verify_map"] = "var_verify_map"
329*41fbaed0Stron    table["address_verify_positive_expire_time"] = "var_verify_pos_exp"
330*41fbaed0Stron    table["address_verify_positive_refresh_time"] = "var_verify_pos_try"
331*41fbaed0Stron    table["address_verify_negative_expire_time"] = "var_verify_neg_exp"
332*41fbaed0Stron    table["address_verify_negative_refresh_time"] = "var_verify_neg_try"
333*41fbaed0Stron    table["address_verify_negative_cache"] = "var_verify_neg_cache"
334*41fbaed0Stron    table["address_verify_sender"] = "var_verify_sender"
335*41fbaed0Stron    table["address_verify_poll_count"] = "var_verify_poll_count"
336*41fbaed0Stron    table["address_verify_poll_delay"] = "var_verify_poll_delay"
337*41fbaed0Stron    table["address_verify_local_transport"] = "var_vrfy_local_xport"
338*41fbaed0Stron    table["address_verify_virtual_transport"] = "var_vrfy_virt_xport"
339*41fbaed0Stron    table["address_verify_relay_transport"] = "var_vrfy_relay_xport"
340*41fbaed0Stron    table["address_verify_default_transport"] = "var_vrfy_def_xport"
341*41fbaed0Stron    table["address_verify_relayhost"] = "var_vrfy_relayhost"
342*41fbaed0Stron    table["address_verify_transport_maps"] = "var_vrfy_xport_maps"
343*41fbaed0Stron    table["trace_service_name"] = "var_trace_service"
344*41fbaed0Stron    table["mailbox_defer_errors"] = "var_mbx_defer_errs"
345*41fbaed0Stron    table["maildir_defer_errors"] = "var_mdr_defer_errs"
346*41fbaed0Stron    table["berkeley_db_create_buffer_size"] = "var_db_create_buf"
347*41fbaed0Stron    table["berkeley_db_read_buffer_size"] = "var_db_read_buf"
348*41fbaed0Stron    table["queue_file_attribute_count_limit"] = "var_qattr_count_limit"
349*41fbaed0Stron    table["mime_nesting_limit"] = "var_mime_maxdepth"
350*41fbaed0Stron    table["mime_boundary_length_limit"] = "var_mime_bound_len"
351*41fbaed0Stron    table["disable_mime_input_processing"] = "var_disable_mime_input"
352*41fbaed0Stron    table["disable_mime_output_conversion"] = "var_disable_mime_oconv"
353*41fbaed0Stron    table["strict_8bitmime"] = "var_strict_8bitmime"
354*41fbaed0Stron    table["strict_7bit_headers"] = "var_strict_7bit_hdrs"
355*41fbaed0Stron    table["strict_8bitmime_body"] = "var_strict_8bit_body"
356*41fbaed0Stron    table["strict_mime_encoding_domain"] = "var_strict_encoding"
357*41fbaed0Stron    table["sender_based_routing"] = "var_sender_routing"
358*41fbaed0Stron    table["transport_null_address_lookup_key"] = "var_xport_null_key"
359*41fbaed0Stron    table["backwards_bounce_logfile_compatibility"] = "var_oldlog_compat"
360*41fbaed0Stron    table["smtpd_proxy_filter"] = "var_smtpd_proxy_filt"
361*41fbaed0Stron    table["smtpd_proxy_ehlo"] = "var_smtpd_proxy_ehlo"
362*41fbaed0Stron    table["smtpd_proxy_timeout"] = "var_smtpd_proxy_tmout"
363*41fbaed0Stron    table["receive_override_options"] = "var_smtpd_input_transp"
364*41fbaed0Stron    table["smtpd_policy_service_timeout"] = "var_smtpd_policy_tmout"
365*41fbaed0Stron    table["smtpd_policy_service_max_idle"] = "var_smtpd_policy_idle"
366*41fbaed0Stron    table["smtpd_policy_service_max_ttl"] = "var_smtpd_policy_ttl"
367*41fbaed0Stron    table["smtpd_client_connection_rate_limit"] = "var_smtpd_crate_limit"
368*41fbaed0Stron    table["smtpd_client_connection_count_limit"] = "var_smtpd_cconn_limit"
369*41fbaed0Stron    table["smtpd_client_connection_limit_exceptions"] = "var_smtpd_hoggers"
370*41fbaed0Stron    table["client_rate_time_unit"] = "var_anvil_time_unit"
371*41fbaed0Stron    table["client_event_status_update_time"] = "var_anvil_stat_time"
372*41fbaed0Stron    table["client_connection_rate_service"] = "var_anvil_service"
373*41fbaed0Stron
374*41fbaed0Stron}
375*41fbaed0Stron
376*41fbaed0Stron{   if (name = table[$1]) print $1 }
377*41fbaed0Stron
378*41fbaed0Stron' | sort -u
379