1 /* the default phrases */
2 const char *default_rpost_phrases[] = {
3 	"Usage: %v1% hostname [@filename] [-s | -S name] [-e | -E name] [-b batch_file -p dir_prefix]",	/* 0 */
4 	"-U userid -P passwd] [-M] [-N portnr] [-T timeout] [-u] [-f filter_args] <RETURN>\n",
5 	"\tIf used, filter_args MUST be last arguments on line\n",
6 	"Sorry, Can't post to this host\n",
7 	"Closing connection to %v1%\n",
8 	"Bad luck.  You can't use this server.\n",		/* 5 */
9 	"Duplicate article, unable to post\n",
10 	"Malfunction, Unable to post Article!\n%v1%",
11 	"Invalid argument: %v1%\n",
12 	"Using Built-In default %v1%\n",
13 	"No infile specification, aborting\n",		/* 10 */
14 	"No file to process, aborting\n",
15 	"Empty file, skipping\n",
16 	"Deleting batch file: %v1%\n",
17 	"Execl",
18 	"Fork",						/* 15 */
19 	"Weird Response to Authorization: %v1%\n",
20 	"Authorization Denied",
21 	"*** Unexpected response to command: %v1%\n%v2%\n",
22 	"Invalid argument: %v1%\n",
23 	"No Host Name Specified\n",			/* 20 */
24 	"No Batch file Specified\n",
25 	"No prefix Supplied\n",
26 	"No args to use for filter\n",
27 	"No Error Log name provided\n",
28 	"rpost: Status Log",				/* 25 */
29 	"No Status Log name provided\n",
30 	"No Userid Specified\n",
31 	"No Password Specified\n",
32 	"No NNRP port Specified\n",
33 	"Invalid argument: %v1%, ignoring\n", /* 30 */
34 	"No language file specified\n",
35 	"No userid or password provided, unable to auto-authenticate",
36 	"No Perl script supplied, ignoring\n",
37 	"Perl set up- out of memory, ignoring\n",
38 	"Perl - error parse file %v1%, ignoring\n", /* 35 */
39 	"Perl - evaluation error %v1%, aborting\n",
40 	"Perl - invalid nr of return values, %v1%, aborting\n",
41 	"No rnews file name or rnews path provided\n",
42 	"Rnews file or path is invalid\n",
43 	"Uploading file-> %v1%\n", /*40*/
44 	"Attempting to authenticate user\n",
45 	"Authentication succeeded\n",
46 	"No userid or password provided, unable to authenticate\n",
47 };
48 
49 int nr_rpost_phrases = sizeof(default_rpost_phrases)/sizeof(default_rpost_phrases[0]);
50