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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
/*************************************************************************
*
* HTCd - Copyright (C) 1998-2006 Henrik Rydberg
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <sh/htc.h>
/////////////////////////////////////////////////////////////////
TOK_IMPL(sethost)
{
Req(env)->htc()->setHost(env[0]);
}
TOK_IMPL(setdomain)
{
Req(env)->htc()->setDomain(env[0]);
}
TOK_IMPL(setport)
{
Req(env)->htc()->setPort(atoi(env[0]));
}
TOK_IMPL(setmailer)
{
Req(env)->htc()->setMailer(env[0]);
}
/////////////////////////////////////////////////////////////////
TOK_IMPL(HOST) {
out<<Req(env)->htc()->host;
}
TOK_IMPL(HOSTIP) {
out<<Req(env)->htc()->node.ip;
}
TOK_IMPL(DOMAIN) {
out<<Req(env)->htc()->domain;
}
TOK_IMPL(ROOT) {
out<<Req(env)->htc()->username;
if(Req(env)->htc()->domain.size()) out<<"@"<<Req(env)->htc()->domain;
}
TOK_IMPL(ADMIN) {
out<<Req(env)->htc()->username;
if(Req(env)->htc()->domain.size()) out<<"@"<<Req(env)->htc()->domain;
}
TOK_IMPL(port)
{
out<<Req(env)->htc()->port;
}
/////////////////////////////////////////////////////////////
void envAddNet(tokmap& T)
{
TOK_ADD(sethost,"x",tok_t::SYSONLY,
"%Set host name\n"
"%Syntax: \\sethost{host}\n"
);
TOK_ADD(setdomain,"x",tok_t::SYSONLY,
"%Set default domain\n"
"%Syntax: \\setdomain{domain}\n"
);
TOK_ADD(setport,"x",tok_t::SYSONLY,
"%Set host port number\n"
"%Syntax: \\setport{port}\n"
);
TOK_ADD(setmailer,"x",tok_t::SYSONLY,
"%Set mail program path\n"
"%Syntax: \\setmailer{path}\n"
);
/////////////////////////////////////////////////////////////
TOK_ADD(HOST,"",tok_t::PUBLIC,
"%Host name\n"
"%Syntax: \\HOST\n"
);
TOK_ADD(HOSTIP,"",tok_t::PUBLIC,
"%Host IP address\n"
"%Syntax: \\HOSTIP\n"
);
TOK_ADD(DOMAIN,"",tok_t::PUBLIC,
"%Default domain\n"
"%Syntax: \\DOMAIN\n"
);
TOK_ADD(ROOT,"",tok_t::PUBLIC,
"%htcroot email address\n"
"%Syntax: \\ROOT\n"
);
TOK_ADD(ADMIN,"",tok_t::PUBLIC,
"%admin email address\n"
"%Syntax: \\ADMIN\n"
);
TOK_ADD(port,"",tok_t::PUBLIC,
"%Host port number\n"
"%Syntax: \\port\n"
);
}
|