-
I used the latest git and solved that, looks like the comma that separates the name and the last name confuses sipe into a multiparty chat.
The only thing I had to do was modify the sipe.c as in my "latest git" post, if I didn't do that sipe refused to compile.
2009-07-11 14:37:06 UTC in A third-party Pidgin plugin for OCS/LCS
-
I've just downloaded the latest git:
http://repo.or.cz/w/siplcs.git?a=commitdiff;h=b3922782925207dc4f27782ee55fcd4e0ad766fe
it fails to compile, but if you replace
+ sprintf(len, "%" G_GSIZE_FORMAT , (long unsigned int)strlen(body));
for
+ sprintf(len, "%" G_GSIZE_FORMAT , (unsigned int)strlen(body));
and
+ body...
2009-07-10 18:46:06 UTC in A third-party Pidgin plugin for OCS/LCS
-
Maybe someone can find this mod useful:
I wanted to fetchmail for an alias too, but postfixadmin didn't have that. The change itself is easy:
Comment out the line
# $sql="SELECT username FROM $table_mailbox WHERE domain in ('".$user_domains_sql."')"; # TODO: replace with domain selection dropdown
and add:
$sql="SELECT address as username FROM alias WHERE domain...
2009-06-23 10:37:18 UTC in Postfix Admin