mirror of
git://git.psyced.org/git/psyced
synced 2024-08-15 03:25:10 +00:00
+
This commit is contained in:
parent
dcbee7a64e
commit
d63e37eb89
2 changed files with 4 additions and 1 deletions
|
@ -3992,6 +3992,9 @@ jabber/active
|
||||||
smtp/outgoing, smtp/user
|
smtp/outgoing, smtp/user
|
||||||
+ implementation of outgoing mail queue
|
+ implementation of outgoing mail queue
|
||||||
=== 201002 ============================================================
|
=== 201002 ============================================================
|
||||||
|
*
|
||||||
|
- in many spots is_localhost() was being called
|
||||||
|
with hostnames that have not been lowercased. oops!?
|
||||||
person, user
|
person, user
|
||||||
+ allow multiple psyc clients per user, thx tg
|
+ allow multiple psyc clients per user, thx tg
|
||||||
usercmd
|
usercmd
|
||||||
|
|
|
@ -49,7 +49,7 @@ void dispatch(mixed header_vars, mixed varops, mixed method, mixed body) {
|
||||||
DISPATCHERROR("target is not an uniform\n")
|
DISPATCHERROR("target is not an uniform\n")
|
||||||
}
|
}
|
||||||
// FIXME relaying support here?
|
// FIXME relaying support here?
|
||||||
if (!is_localhost(local_host(u[UHost]))) {
|
if (!is_localhost(lower_case(u[UHost]))) {
|
||||||
DISPATCHERROR("target is not configured on this server\n")
|
DISPATCHERROR("target is not configured on this server\n")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue