[7d4fbcd] | 1 | #include <stdlib.h> |
---|
| 2 | #include <unistd.h> |
---|
| 3 | #include <sys/types.h> |
---|
| 4 | #include <sys/wait.h> |
---|
| 5 | #include <string.h> |
---|
| 6 | #include "owl.h" |
---|
| 7 | |
---|
[1aee7d9] | 8 | static const char fileIdent[] = "$Id$"; |
---|
| 9 | |
---|
[09489b89] | 10 | #ifdef HAVE_LIBZEPHYR |
---|
[8262340] | 11 | Code_t ZResetAuthentication(); |
---|
[09489b89] | 12 | #endif |
---|
[8262340] | 13 | |
---|
[be0a79f] | 14 | int owl_zephyr_initialize() |
---|
| 15 | { |
---|
[09489b89] | 16 | #ifdef HAVE_LIBZEPHYR |
---|
[be0a79f] | 17 | int ret; |
---|
| 18 | |
---|
| 19 | if ((ret = ZInitialize()) != ZERR_NONE) { |
---|
| 20 | com_err("owl",ret,"while initializing"); |
---|
| 21 | return(1); |
---|
| 22 | } |
---|
| 23 | if ((ret = ZOpenPort(NULL)) != ZERR_NONE) { |
---|
| 24 | com_err("owl",ret,"while opening port"); |
---|
| 25 | return(1); |
---|
| 26 | } |
---|
[09489b89] | 27 | #endif |
---|
| 28 | return(0); |
---|
| 29 | } |
---|
| 30 | |
---|
| 31 | |
---|
| 32 | int owl_zephyr_shutdown() |
---|
| 33 | { |
---|
| 34 | #ifdef HAVE_LIBZEPHYR |
---|
| 35 | unsuball(); |
---|
| 36 | ZClosePort(); |
---|
| 37 | #endif |
---|
[be0a79f] | 38 | return(0); |
---|
| 39 | } |
---|
| 40 | |
---|
| 41 | int owl_zephyr_zpending() |
---|
| 42 | { |
---|
| 43 | #ifdef HAVE_LIBZEPHYR |
---|
| 44 | return(ZPending()); |
---|
| 45 | #else |
---|
| 46 | return(0); |
---|
| 47 | #endif |
---|
| 48 | } |
---|
| 49 | |
---|
[09489b89] | 50 | char *owl_zephyr_get_realm() |
---|
| 51 | { |
---|
| 52 | #ifdef HAVE_LIBZEPHYR |
---|
| 53 | return(ZGetRealm()); |
---|
| 54 | #else |
---|
| 55 | return(""); |
---|
| 56 | #endif |
---|
| 57 | } |
---|
| 58 | |
---|
| 59 | char *owl_zephyr_get_sender() |
---|
| 60 | { |
---|
| 61 | #ifdef HAVE_LIBZEPHYR |
---|
| 62 | return(ZGetSender()); |
---|
| 63 | #else |
---|
| 64 | return(""); |
---|
| 65 | #endif |
---|
| 66 | } |
---|
| 67 | |
---|
[2de4f20] | 68 | /* return 0 on success |
---|
| 69 | * -1 on file error |
---|
| 70 | * -2 on subscription error |
---|
| 71 | */ |
---|
[31e48a3] | 72 | int owl_zephyr_loadsubs(char *filename) |
---|
| 73 | { |
---|
[be0a79f] | 74 | #ifdef HAVE_LIBZEPHYR |
---|
[7d4fbcd] | 75 | FILE *file; |
---|
| 76 | char *tmp, *start; |
---|
| 77 | char buffer[1024], subsfile[1024]; |
---|
| 78 | ZSubscription_t subs[3001]; |
---|
| 79 | int count, ret, i; |
---|
| 80 | |
---|
| 81 | ret=0; |
---|
| 82 | |
---|
| 83 | if (filename==NULL) { |
---|
| 84 | sprintf(subsfile, "%s/%s", owl_global_get_homedir(&g), ".zephyr.subs"); |
---|
| 85 | } else { |
---|
| 86 | strcpy(subsfile, filename); |
---|
| 87 | } |
---|
[8262340] | 88 | |
---|
| 89 | ZResetAuthentication(); |
---|
[7d4fbcd] | 90 | /* need to redo this to do chunks, not just bail after 3000 */ |
---|
| 91 | count=0; |
---|
| 92 | file=fopen(subsfile, "r"); |
---|
| 93 | if (file) { |
---|
| 94 | while ( fgets(buffer, 1024, file)!=NULL ) { |
---|
| 95 | if (buffer[0]=='#' || buffer[0]=='\n' || buffer[0]=='\n') continue; |
---|
| 96 | |
---|
| 97 | if (buffer[0]=='-') { |
---|
| 98 | start=buffer+1; |
---|
| 99 | } else { |
---|
| 100 | start=buffer; |
---|
| 101 | } |
---|
| 102 | |
---|
| 103 | if (count >= 3000) break; /* also tell the user */ |
---|
| 104 | |
---|
| 105 | /* add it to the list of subs */ |
---|
| 106 | if ((tmp=(char *) strtok(start, ",\n\r"))==NULL) continue; |
---|
| 107 | subs[count].zsub_class=owl_strdup(tmp); |
---|
| 108 | if ((tmp=(char *) strtok(NULL, ",\n\r"))==NULL) continue; |
---|
| 109 | subs[count].zsub_classinst=owl_strdup(tmp); |
---|
| 110 | if ((tmp=(char *) strtok(NULL, " \t\n\r"))==NULL) continue; |
---|
| 111 | subs[count].zsub_recipient=owl_strdup(tmp); |
---|
| 112 | |
---|
| 113 | /* if it started with '-' then add it to the global punt list */ |
---|
| 114 | if (buffer[0]=='-') { |
---|
| 115 | owl_function_zpunt(subs[count].zsub_class, subs[count].zsub_classinst, subs[count].zsub_recipient, 0); |
---|
| 116 | } |
---|
| 117 | |
---|
| 118 | count++; |
---|
| 119 | } |
---|
| 120 | fclose(file); |
---|
| 121 | } else { |
---|
| 122 | count=0; |
---|
| 123 | ret=-1; |
---|
| 124 | } |
---|
| 125 | |
---|
| 126 | /* sub with defaults */ |
---|
| 127 | if (ZSubscribeTo(subs,count,0) != ZERR_NONE) { |
---|
[252a5c2] | 128 | owl_function_error("Error subscribing to zephyr notifications."); |
---|
[7d4fbcd] | 129 | ret=-2; |
---|
| 130 | } |
---|
| 131 | |
---|
| 132 | /* free stuff */ |
---|
| 133 | for (i=0; i<count; i++) { |
---|
| 134 | owl_free(subs[i].zsub_class); |
---|
| 135 | owl_free(subs[i].zsub_classinst); |
---|
| 136 | owl_free(subs[i].zsub_recipient); |
---|
| 137 | } |
---|
| 138 | |
---|
| 139 | return(ret); |
---|
[be0a79f] | 140 | #else |
---|
| 141 | return(0); |
---|
| 142 | #endif |
---|
[7d4fbcd] | 143 | } |
---|
| 144 | |
---|
[31e48a3] | 145 | int owl_zephyr_loadloginsubs(char *filename) |
---|
| 146 | { |
---|
[be0a79f] | 147 | #ifdef HAVE_LIBZEPHYR |
---|
[7d4fbcd] | 148 | FILE *file; |
---|
| 149 | ZSubscription_t subs[3001]; |
---|
| 150 | char subsfile[1024], buffer[1024]; |
---|
| 151 | int count, ret, i; |
---|
| 152 | |
---|
| 153 | ret=0; |
---|
| 154 | |
---|
| 155 | if (filename==NULL) { |
---|
| 156 | sprintf(subsfile, "%s/%s", owl_global_get_homedir(&g), ".anyone"); |
---|
| 157 | } else { |
---|
| 158 | strcpy(subsfile, filename); |
---|
| 159 | } |
---|
| 160 | |
---|
[8262340] | 161 | ZResetAuthentication(); |
---|
[7d4fbcd] | 162 | /* need to redo this to do chunks, not just bag out after 3000 */ |
---|
| 163 | count=0; |
---|
| 164 | file=fopen(subsfile, "r"); |
---|
| 165 | if (file) { |
---|
| 166 | while ( fgets(buffer, 1024, file)!=NULL ) { |
---|
| 167 | if (buffer[0]=='#' || buffer[0]=='\n' || buffer[0]=='\n') continue; |
---|
| 168 | |
---|
| 169 | if (count >= 3000) break; /* also tell the user */ |
---|
| 170 | |
---|
| 171 | buffer[strlen(buffer)-1]='\0'; |
---|
| 172 | subs[count].zsub_class="login"; |
---|
| 173 | subs[count].zsub_recipient="*"; |
---|
| 174 | if (strchr(buffer, '@')) { |
---|
| 175 | subs[count].zsub_classinst=owl_strdup(buffer); |
---|
| 176 | } else { |
---|
[1c6c4d3] | 177 | subs[count].zsub_classinst=owl_sprintf("%s@%s", buffer, ZGetRealm()); |
---|
[7d4fbcd] | 178 | } |
---|
| 179 | |
---|
| 180 | count++; |
---|
| 181 | } |
---|
| 182 | fclose(file); |
---|
| 183 | } else { |
---|
| 184 | count=0; |
---|
| 185 | ret=-1; |
---|
| 186 | } |
---|
| 187 | |
---|
| 188 | /* sub with defaults */ |
---|
[7933748] | 189 | if (ZSubscribeToSansDefaults(subs,count,0) != ZERR_NONE) { |
---|
[252a5c2] | 190 | owl_function_error("Error subscribing to zephyr notifications."); |
---|
[7d4fbcd] | 191 | ret=-2; |
---|
| 192 | } |
---|
| 193 | |
---|
| 194 | /* free stuff */ |
---|
| 195 | for (i=0; i<count; i++) { |
---|
| 196 | owl_free(subs[i].zsub_classinst); |
---|
| 197 | } |
---|
| 198 | |
---|
| 199 | return(ret); |
---|
[be0a79f] | 200 | #else |
---|
| 201 | return(0); |
---|
| 202 | #endif |
---|
[7d4fbcd] | 203 | } |
---|
| 204 | |
---|
[31e48a3] | 205 | void unsuball() |
---|
| 206 | { |
---|
[be0a79f] | 207 | #if HAVE_LIBZEPHYR |
---|
[7d4fbcd] | 208 | int ret; |
---|
[8262340] | 209 | |
---|
| 210 | ZResetAuthentication(); |
---|
[7d4fbcd] | 211 | ret=ZCancelSubscriptions(0); |
---|
| 212 | if (ret != ZERR_NONE) { |
---|
| 213 | com_err("owl",ret,"while unsubscribing"); |
---|
| 214 | } |
---|
[be0a79f] | 215 | #endif |
---|
[7d4fbcd] | 216 | } |
---|
| 217 | |
---|
[31e48a3] | 218 | int owl_zephyr_sub(char *class, char *inst, char *recip) |
---|
| 219 | { |
---|
[be0a79f] | 220 | #ifdef HAVE_LIBZEPHYR |
---|
[7d4fbcd] | 221 | ZSubscription_t subs[5]; |
---|
| 222 | |
---|
| 223 | subs[0].zsub_class=class; |
---|
| 224 | subs[0].zsub_classinst=inst; |
---|
| 225 | subs[0].zsub_recipient=recip; |
---|
| 226 | |
---|
[8262340] | 227 | ZResetAuthentication(); |
---|
[7d4fbcd] | 228 | if (ZSubscribeTo(subs,1,0) != ZERR_NONE) { |
---|
[97cd00be] | 229 | owl_function_error("Error subbing to <%s,%s,%s>", class, inst, recip); |
---|
| 230 | return(-2); |
---|
[7d4fbcd] | 231 | } |
---|
| 232 | return(0); |
---|
[be0a79f] | 233 | #else |
---|
| 234 | return(0); |
---|
| 235 | #endif |
---|
[7d4fbcd] | 236 | } |
---|
| 237 | |
---|
| 238 | |
---|
[31e48a3] | 239 | int owl_zephyr_unsub(char *class, char *inst, char *recip) |
---|
| 240 | { |
---|
[be0a79f] | 241 | #ifdef HAVE_LIBZEPHYR |
---|
[7d4fbcd] | 242 | ZSubscription_t subs[5]; |
---|
| 243 | |
---|
| 244 | subs[0].zsub_class=class; |
---|
| 245 | subs[0].zsub_classinst=inst; |
---|
| 246 | subs[0].zsub_recipient=recip; |
---|
| 247 | |
---|
[8262340] | 248 | ZResetAuthentication(); |
---|
[7d4fbcd] | 249 | if (ZUnsubscribeTo(subs,1,0) != ZERR_NONE) { |
---|
[97cd00be] | 250 | owl_function_error("Error unsubbing from <%s,%s,%s>", class, inst, recip); |
---|
| 251 | return(-2); |
---|
[7d4fbcd] | 252 | } |
---|
| 253 | return(0); |
---|
[be0a79f] | 254 | #else |
---|
| 255 | return(0); |
---|
| 256 | #endif |
---|
[7d4fbcd] | 257 | } |
---|
| 258 | |
---|
[b0430a6] | 259 | /* return a pointer to the data in the Jth field, (NULL terminated by |
---|
| 260 | * definition). Caller must free the return. |
---|
| 261 | */ |
---|
[be0a79f] | 262 | #ifdef HAVE_LIBZEPHYR |
---|
[b0430a6] | 263 | char *owl_zephyr_get_field(ZNotice_t *n, int j) |
---|
[31e48a3] | 264 | { |
---|
[7d4fbcd] | 265 | int i, count, save; |
---|
[b0430a6] | 266 | char *out; |
---|
[7d4fbcd] | 267 | |
---|
| 268 | count=save=0; |
---|
| 269 | for (i=0; i<n->z_message_len; i++) { |
---|
| 270 | if (n->z_message[i]=='\0') { |
---|
| 271 | count++; |
---|
| 272 | if (count==j) { |
---|
| 273 | /* just found the end of the field we're looking for */ |
---|
[b0430a6] | 274 | return(owl_strdup(n->z_message+save)); |
---|
[7d4fbcd] | 275 | } else { |
---|
| 276 | save=i+1; |
---|
| 277 | } |
---|
| 278 | } |
---|
| 279 | } |
---|
[b0430a6] | 280 | /* catch the last field, which might not be null terminated */ |
---|
[7d4fbcd] | 281 | if (count==j-1) { |
---|
[b0430a6] | 282 | out=owl_malloc(n->z_message_len-save+5); |
---|
| 283 | memcpy(out, n->z_message+save, n->z_message_len-save); |
---|
| 284 | out[n->z_message_len-save]='\0'; |
---|
| 285 | return(out); |
---|
[7d4fbcd] | 286 | } |
---|
[b0430a6] | 287 | |
---|
| 288 | return(owl_strdup("")); |
---|
[7d4fbcd] | 289 | } |
---|
[09489b89] | 290 | #else |
---|
[701a184] | 291 | char *owl_zephyr_get_field(void *n, int j) |
---|
[09489b89] | 292 | { |
---|
[b0430a6] | 293 | return(owl_strdup("")); |
---|
[09489b89] | 294 | } |
---|
[be0a79f] | 295 | #endif |
---|
[7d4fbcd] | 296 | |
---|
[b0430a6] | 297 | |
---|
[be0a79f] | 298 | #ifdef HAVE_LIBZEPHYR |
---|
[31e48a3] | 299 | int owl_zephyr_get_num_fields(ZNotice_t *n) |
---|
| 300 | { |
---|
[7d4fbcd] | 301 | int i, fields; |
---|
| 302 | |
---|
| 303 | fields=1; |
---|
| 304 | for (i=0; i<n->z_message_len; i++) { |
---|
| 305 | if (n->z_message[i]=='\0') fields++; |
---|
| 306 | } |
---|
| 307 | |
---|
| 308 | return(fields); |
---|
| 309 | } |
---|
[09489b89] | 310 | #else |
---|
| 311 | int owl_zephyr_get_num_fields(void *n) |
---|
| 312 | { |
---|
| 313 | return(0); |
---|
| 314 | } |
---|
[be0a79f] | 315 | #endif |
---|
[7d4fbcd] | 316 | |
---|
[be0a79f] | 317 | #ifdef HAVE_LIBZEPHYR |
---|
[b0430a6] | 318 | /* return a pointer to the message, place the message length in k */ |
---|
| 319 | char *owl_zephyr_get_message(ZNotice_t *n) |
---|
[31e48a3] | 320 | { |
---|
[7d4fbcd] | 321 | if (!strcasecmp(n->z_opcode, "ping")) { |
---|
| 322 | return(""); |
---|
| 323 | } |
---|
| 324 | |
---|
[b0430a6] | 325 | return(owl_zephyr_get_field(n, 2)); |
---|
[7d4fbcd] | 326 | } |
---|
[be0a79f] | 327 | #endif |
---|
[7d4fbcd] | 328 | |
---|
[be0a79f] | 329 | #ifdef HAVE_LIBZEPHYR |
---|
[31e48a3] | 330 | char *owl_zephyr_get_zsig(ZNotice_t *n, int *k) |
---|
| 331 | { |
---|
[7d4fbcd] | 332 | /* return a pointer to the zsig if there is one */ |
---|
| 333 | |
---|
| 334 | if (n->z_message_len==0) { |
---|
| 335 | *k=0; |
---|
| 336 | return(""); |
---|
| 337 | } |
---|
| 338 | *k=strlen(n->z_message); |
---|
| 339 | return(n->z_message); |
---|
| 340 | } |
---|
[09489b89] | 341 | #else |
---|
| 342 | char *owl_zephyr_get_zsig(void *n, int *k) |
---|
| 343 | { |
---|
| 344 | return(""); |
---|
| 345 | } |
---|
[be0a79f] | 346 | #endif |
---|
[7d4fbcd] | 347 | |
---|
[31e48a3] | 348 | int send_zephyr(char *opcode, char *zsig, char *class, char *instance, char *recipient, char *message) |
---|
| 349 | { |
---|
[be0a79f] | 350 | #ifdef HAVE_LIBZEPHYR |
---|
[7d4fbcd] | 351 | int ret; |
---|
| 352 | ZNotice_t notice; |
---|
| 353 | |
---|
| 354 | memset(¬ice, 0, sizeof(notice)); |
---|
| 355 | |
---|
[8262340] | 356 | ZResetAuthentication(); |
---|
| 357 | |
---|
[7d4fbcd] | 358 | notice.z_kind=ACKED; |
---|
| 359 | notice.z_port=0; |
---|
| 360 | notice.z_class=class; |
---|
| 361 | notice.z_class_inst=instance; |
---|
| 362 | if (!strcmp(recipient, "*") || !strcmp(recipient, "@")) { |
---|
| 363 | notice.z_recipient=""; |
---|
| 364 | } else { |
---|
| 365 | notice.z_recipient=recipient; |
---|
| 366 | } |
---|
| 367 | notice.z_default_format="Class $class, Instance $instance:\nTo: @bold($recipient) at $time $date\nFrom: @bold{$1 <$sender>}\n\n$2"; |
---|
| 368 | notice.z_sender=NULL; |
---|
| 369 | if (opcode) notice.z_opcode=opcode; |
---|
| 370 | |
---|
[56330ff] | 371 | notice.z_message_len=strlen(zsig)+1+strlen(message); |
---|
[7d4fbcd] | 372 | notice.z_message=owl_malloc(notice.z_message_len+10); |
---|
[56330ff] | 373 | strcpy(notice.z_message, zsig); |
---|
| 374 | memcpy(notice.z_message+strlen(zsig)+1, message, strlen(message)); |
---|
[7d4fbcd] | 375 | |
---|
| 376 | /* ret=ZSendNotice(¬ice, ZAUTH); */ |
---|
| 377 | ret=ZSrvSendNotice(¬ice, ZAUTH, send_zephyr_helper); |
---|
| 378 | |
---|
| 379 | /* free then check the return */ |
---|
| 380 | owl_free(notice.z_message); |
---|
| 381 | ZFreeNotice(¬ice); |
---|
| 382 | if (ret!=ZERR_NONE) { |
---|
[ec6ff52] | 383 | owl_function_error("Error sending zephyr"); |
---|
[7d4fbcd] | 384 | return(ret); |
---|
| 385 | } |
---|
| 386 | return(0); |
---|
[be0a79f] | 387 | #else |
---|
| 388 | return(0); |
---|
| 389 | #endif |
---|
[7d4fbcd] | 390 | } |
---|
| 391 | |
---|
[be0a79f] | 392 | #ifdef HAVE_LIBZEPHYR |
---|
[31e48a3] | 393 | Code_t send_zephyr_helper(ZNotice_t *notice, char *buf, int len, int wait) |
---|
| 394 | { |
---|
[7d4fbcd] | 395 | return(ZSendPacket(buf, len, 0)); |
---|
| 396 | } |
---|
[be0a79f] | 397 | #endif |
---|
[7d4fbcd] | 398 | |
---|
[31e48a3] | 399 | void send_ping(char *to) |
---|
| 400 | { |
---|
[be0a79f] | 401 | #ifdef HAVE_LIBZEPHYR |
---|
[7d4fbcd] | 402 | send_zephyr("PING", "", "MESSAGE", "PERSONAL", to, ""); |
---|
[be0a79f] | 403 | #endif |
---|
[7d4fbcd] | 404 | } |
---|
| 405 | |
---|
[be0a79f] | 406 | #ifdef HAVE_LIBZEPHYR |
---|
[31e48a3] | 407 | void owl_zephyr_handle_ack(ZNotice_t *retnotice) |
---|
| 408 | { |
---|
[7d4fbcd] | 409 | char *tmp; |
---|
| 410 | |
---|
| 411 | /* if it's an HMACK ignore it */ |
---|
| 412 | if (retnotice->z_kind == HMACK) return; |
---|
[aecf3e6] | 413 | |
---|
[7d4fbcd] | 414 | if (retnotice->z_kind == SERVNAK) { |
---|
[ec6ff52] | 415 | owl_function_error("Authorization failure sending zephyr"); |
---|
[7d4fbcd] | 416 | } else if ((retnotice->z_kind != SERVACK) || !retnotice->z_message_len) { |
---|
[ec6ff52] | 417 | owl_function_error("Detected server failure while receiving acknowledgement"); |
---|
[7d4fbcd] | 418 | } else if (!strcmp(retnotice->z_message, ZSRVACK_SENT)) { |
---|
| 419 | if (!strcasecmp(retnotice->z_opcode, "ping")) { |
---|
| 420 | return; |
---|
| 421 | } else if (!strcasecmp(retnotice->z_class, "message") && |
---|
| 422 | !strcasecmp(retnotice->z_class_inst, "personal")) { |
---|
[4b464a4] | 423 | tmp=short_zuser(retnotice->z_recipient); |
---|
[b4db911] | 424 | owl_function_makemsg("Message sent to %s.", tmp); |
---|
[7d4fbcd] | 425 | free(tmp); |
---|
| 426 | } else { |
---|
[b4db911] | 427 | owl_function_makemsg("Message sent to -c %s -i %s\n", retnotice->z_class, retnotice->z_class_inst); |
---|
[7d4fbcd] | 428 | } |
---|
| 429 | } else if (!strcmp(retnotice->z_message, ZSRVACK_NOTSENT)) { |
---|
| 430 | if (strcasecmp(retnotice->z_class, "message")) { |
---|
[9119a47] | 431 | char buff[1024]; |
---|
[269ed34] | 432 | owl_function_error("No one subscribed to class class %s", retnotice->z_class); |
---|
| 433 | sprintf(buff, "Could not send message to class %s: no one subscribed.\n", retnotice->z_class); |
---|
[9119a47] | 434 | owl_function_adminmsg("", buff); |
---|
[7d4fbcd] | 435 | } else { |
---|
[9119a47] | 436 | char buff[1024]; |
---|
[4b464a4] | 437 | tmp = short_zuser(retnotice->z_recipient); |
---|
[ec6ff52] | 438 | owl_function_error("%s: Not logged in or subscribing to messages.", |
---|
[1c6c4d3] | 439 | tmp); |
---|
[9119a47] | 440 | |
---|
| 441 | sprintf(buff, "Could not send message to %s: not logged in or subscribing to messages.\n", tmp); |
---|
| 442 | owl_function_adminmsg("", buff); |
---|
[1c6c4d3] | 443 | owl_free(tmp); |
---|
[7d4fbcd] | 444 | } |
---|
| 445 | } else { |
---|
[ec6ff52] | 446 | owl_function_error("Internal error on ack (%s)", retnotice->z_message); |
---|
[7d4fbcd] | 447 | } |
---|
| 448 | } |
---|
[09489b89] | 449 | #else |
---|
| 450 | void owl_zephyr_handle_ack(void *retnotice) |
---|
| 451 | { |
---|
| 452 | } |
---|
[be0a79f] | 453 | #endif |
---|
[7d4fbcd] | 454 | |
---|
[be0a79f] | 455 | #ifdef HAVE_LIBZEPHYR |
---|
[31e48a3] | 456 | int owl_zephyr_notice_is_ack(ZNotice_t *n) |
---|
| 457 | { |
---|
[7d4fbcd] | 458 | if (n->z_kind == SERVNAK || n->z_kind == SERVACK || n->z_kind == HMACK) { |
---|
| 459 | if (!strcasecmp(n->z_class, LOGIN_CLASS)) return(0); |
---|
| 460 | return(1); |
---|
| 461 | } |
---|
| 462 | return(0); |
---|
| 463 | } |
---|
[09489b89] | 464 | #else |
---|
| 465 | int owl_zephyr_notice_is_ack(void *n) |
---|
| 466 | { |
---|
| 467 | return(0); |
---|
| 468 | } |
---|
[be0a79f] | 469 | #endif |
---|
[7d4fbcd] | 470 | |
---|
[31e48a3] | 471 | void owl_zephyr_zaway(owl_message *m) |
---|
| 472 | { |
---|
[be0a79f] | 473 | #ifdef HAVE_LIBZEPHYR |
---|
[7c8060d0] | 474 | char *tmpbuff, *myuser, *to; |
---|
[7d4fbcd] | 475 | |
---|
[aa2f6364] | 476 | /* bail if it doesn't look like a message we should reply to. Some |
---|
[2de4f20] | 477 | * of this defined by the way zaway(1) works |
---|
| 478 | */ |
---|
[7d4fbcd] | 479 | if (strcasecmp(owl_message_get_class(m), "message")) return; |
---|
| 480 | if (strcasecmp(owl_message_get_recipient(m), ZGetSender())) return; |
---|
| 481 | if (!strcasecmp(owl_message_get_sender(m), "")) return; |
---|
| 482 | if (!strcasecmp(owl_message_get_opcode(m), "ping")) return; |
---|
| 483 | if (!strcasecmp(owl_message_get_opcode(m), "auto")) return; |
---|
[d023c25] | 484 | if (!strcasecmp(owl_message_get_zsig(m), "Automated reply:")) return; |
---|
[7d4fbcd] | 485 | if (!strcasecmp(owl_message_get_sender(m), ZGetSender())) return; |
---|
[9854278] | 486 | if (owl_message_get_attribute_value(m, "isauto")) return; |
---|
[7d4fbcd] | 487 | |
---|
[7c8060d0] | 488 | if (owl_global_is_smartstrip(&g)) { |
---|
[e3d9c77] | 489 | to=owl_zephyr_smartstripped_user(owl_message_get_sender(m)); |
---|
[7c8060d0] | 490 | } else { |
---|
| 491 | to=owl_strdup(owl_message_get_sender(m)); |
---|
| 492 | } |
---|
| 493 | |
---|
[7d4fbcd] | 494 | send_zephyr("", |
---|
| 495 | "Automated reply:", |
---|
| 496 | owl_message_get_class(m), |
---|
| 497 | owl_message_get_instance(m), |
---|
[7c8060d0] | 498 | to, |
---|
[7d4fbcd] | 499 | owl_global_get_zaway_msg(&g)); |
---|
| 500 | |
---|
[7c8060d0] | 501 | myuser=short_zuser(to); |
---|
[aa2f6364] | 502 | if (!strcasecmp(owl_message_get_instance(m), "personal")) { |
---|
| 503 | tmpbuff = owl_sprintf("zwrite %s", myuser); |
---|
| 504 | } else { |
---|
| 505 | tmpbuff = owl_sprintf("zwrite -i %s %s", owl_message_get_instance(m), myuser); |
---|
| 506 | } |
---|
| 507 | owl_free(myuser); |
---|
[7c8060d0] | 508 | owl_free(to); |
---|
[aa2f6364] | 509 | |
---|
[7d4fbcd] | 510 | /* display the message as an admin message in the receive window */ |
---|
[d023c25] | 511 | owl_function_make_outgoing_zephyr(owl_global_get_zaway_msg(&g), tmpbuff, "Automated reply:"); |
---|
[7d4fbcd] | 512 | owl_free(tmpbuff); |
---|
[be0a79f] | 513 | #endif |
---|
[7d4fbcd] | 514 | } |
---|
| 515 | |
---|
[be0a79f] | 516 | #ifdef HAVE_LIBZEPHYR |
---|
[31e48a3] | 517 | void owl_zephyr_hackaway_cr(ZNotice_t *n) |
---|
| 518 | { |
---|
[7d4fbcd] | 519 | /* replace \r's with ' '. Gross-ish */ |
---|
| 520 | int i; |
---|
| 521 | |
---|
| 522 | for (i=0; i<n->z_message_len; i++) { |
---|
| 523 | if (n->z_message[i]=='\r') { |
---|
| 524 | n->z_message[i]=' '; |
---|
| 525 | } |
---|
| 526 | } |
---|
| 527 | } |
---|
[be0a79f] | 528 | #endif |
---|
[7d4fbcd] | 529 | |
---|
[31e48a3] | 530 | void owl_zephyr_zlocate(char *user, char *out, int auth) |
---|
| 531 | { |
---|
[be0a79f] | 532 | #ifdef HAVE_LIBZEPHYR |
---|
[7d4fbcd] | 533 | int ret, numlocs; |
---|
| 534 | int one = 1; |
---|
| 535 | ZLocations_t locations; |
---|
| 536 | char *myuser; |
---|
| 537 | |
---|
| 538 | strcpy(out, ""); |
---|
[8262340] | 539 | ZResetAuthentication(); |
---|
[7d4fbcd] | 540 | ret=ZLocateUser(user,&numlocs,auth?ZAUTH:ZNOAUTH); |
---|
| 541 | if (ret != ZERR_NONE) { |
---|
[ec6ff52] | 542 | owl_function_error("Error locating user %s", user); |
---|
[7d4fbcd] | 543 | } |
---|
| 544 | |
---|
| 545 | if (numlocs==0) { |
---|
[2527615] | 546 | myuser=short_zuser(user); |
---|
| 547 | sprintf(out, "%s: Hidden or not logged-in\n", myuser); |
---|
| 548 | owl_free(myuser); |
---|
[7d4fbcd] | 549 | return; |
---|
| 550 | } |
---|
| 551 | |
---|
| 552 | for (;numlocs;numlocs--) { |
---|
| 553 | ZGetLocations(&locations,&one); |
---|
[4b464a4] | 554 | myuser=short_zuser(user); |
---|
[7d4fbcd] | 555 | sprintf(out, "%s%s: %s\t%s\t%s\n", out, myuser, locations.host, locations.tty, locations.time); |
---|
| 556 | owl_free(myuser); |
---|
| 557 | } |
---|
[be0a79f] | 558 | #endif |
---|
[7d4fbcd] | 559 | } |
---|
[bde7714] | 560 | |
---|
[31e48a3] | 561 | void owl_zephyr_addsub(char *filename, char *class, char *inst, char *recip) |
---|
| 562 | { |
---|
[be0a79f] | 563 | #ifdef HAVE_LIBZEPHYR |
---|
[bde7714] | 564 | char *line, subsfile[LINE], buff[LINE]; |
---|
| 565 | FILE *file; |
---|
| 566 | |
---|
| 567 | line=owl_zephyr_makesubline(class, inst, recip); |
---|
| 568 | |
---|
| 569 | if (filename==NULL) { |
---|
| 570 | sprintf(subsfile, "%s/%s", owl_global_get_homedir(&g), ".zephyr.subs"); |
---|
| 571 | } else { |
---|
| 572 | strcpy(subsfile, filename); |
---|
| 573 | } |
---|
| 574 | |
---|
| 575 | /* first check if it exists already */ |
---|
| 576 | file=fopen(subsfile, "r"); |
---|
| 577 | if (!file) { |
---|
[ec6ff52] | 578 | owl_function_error("Error opening file %s", subsfile); |
---|
[bde7714] | 579 | owl_free(line); |
---|
| 580 | return; |
---|
| 581 | } |
---|
| 582 | while (fgets(buff, LINE, file)!=NULL) { |
---|
| 583 | if (!strcasecmp(buff, line)) { |
---|
[ec6ff52] | 584 | owl_function_error("Subscription already present in %s", subsfile); |
---|
[bde7714] | 585 | owl_free(line); |
---|
| 586 | return; |
---|
| 587 | } |
---|
| 588 | } |
---|
| 589 | |
---|
| 590 | /* if we get here then we didn't find it */ |
---|
| 591 | fclose(file); |
---|
| 592 | file=fopen(subsfile, "a"); |
---|
| 593 | if (!file) { |
---|
[ec6ff52] | 594 | owl_function_error("Error opening file %s for writing", subsfile); |
---|
[bde7714] | 595 | owl_free(line); |
---|
| 596 | return; |
---|
| 597 | } |
---|
| 598 | fputs(line, file); |
---|
| 599 | fclose(file); |
---|
| 600 | owl_function_makemsg("Subscription added"); |
---|
| 601 | |
---|
| 602 | owl_free(line); |
---|
[be0a79f] | 603 | #endif |
---|
[bde7714] | 604 | } |
---|
| 605 | |
---|
[31e48a3] | 606 | void owl_zephyr_delsub(char *filename, char *class, char *inst, char *recip) |
---|
| 607 | { |
---|
[be0a79f] | 608 | #ifdef HAVE_LIBZEPHYR |
---|
[b2a91b6] | 609 | char *line, *subsfile; |
---|
[bde7714] | 610 | |
---|
| 611 | line=owl_zephyr_makesubline(class, inst, recip); |
---|
[b2a91b6] | 612 | line[strlen(line)-1]='\0'; |
---|
[bde7714] | 613 | |
---|
[b2a91b6] | 614 | if (!filename) { |
---|
| 615 | subsfile=owl_sprintf("%s/.zephyr.subs", owl_global_get_homedir(&g)); |
---|
[bde7714] | 616 | } else { |
---|
[b2a91b6] | 617 | subsfile=owl_strdup(filename); |
---|
[bde7714] | 618 | } |
---|
[b2a91b6] | 619 | |
---|
| 620 | owl_util_file_deleteline(subsfile, line, 1); |
---|
| 621 | owl_free(subsfile); |
---|
[bde7714] | 622 | owl_free(line); |
---|
| 623 | owl_function_makemsg("Subscription removed"); |
---|
[be0a79f] | 624 | #endif |
---|
[bde7714] | 625 | } |
---|
| 626 | |
---|
[b2a91b6] | 627 | /* caller must free the return */ |
---|
[31e48a3] | 628 | char *owl_zephyr_makesubline(char *class, char *inst, char *recip) |
---|
| 629 | { |
---|
[bde7714] | 630 | char *out; |
---|
| 631 | |
---|
| 632 | out=owl_malloc(strlen(class)+strlen(inst)+strlen(recip)+30); |
---|
| 633 | sprintf(out, "%s,%s,%s\n", class, inst, !strcmp(recip, "") ? "*" : recip); |
---|
| 634 | return(out); |
---|
| 635 | } |
---|
[31e48a3] | 636 | |
---|
| 637 | |
---|
| 638 | void owl_zephyr_zlog_in(void) |
---|
| 639 | { |
---|
[be0a79f] | 640 | #ifdef HAVE_LIBZEPHYR |
---|
[31e48a3] | 641 | char *exposure, *eset; |
---|
| 642 | int ret; |
---|
| 643 | |
---|
| 644 | ZResetAuthentication(); |
---|
| 645 | |
---|
| 646 | eset=EXPOSE_REALMVIS; |
---|
| 647 | exposure=ZGetVariable("exposure"); |
---|
| 648 | if (exposure==NULL) { |
---|
| 649 | eset=EXPOSE_REALMVIS; |
---|
| 650 | } else if (!strcasecmp(exposure,EXPOSE_NONE)) { |
---|
| 651 | eset = EXPOSE_NONE; |
---|
| 652 | } else if (!strcasecmp(exposure,EXPOSE_OPSTAFF)) { |
---|
| 653 | eset = EXPOSE_OPSTAFF; |
---|
| 654 | } else if (!strcasecmp(exposure,EXPOSE_REALMVIS)) { |
---|
| 655 | eset = EXPOSE_REALMVIS; |
---|
| 656 | } else if (!strcasecmp(exposure,EXPOSE_REALMANN)) { |
---|
| 657 | eset = EXPOSE_REALMANN; |
---|
| 658 | } else if (!strcasecmp(exposure,EXPOSE_NETVIS)) { |
---|
| 659 | eset = EXPOSE_NETVIS; |
---|
| 660 | } else if (!strcasecmp(exposure,EXPOSE_NETANN)) { |
---|
| 661 | eset = EXPOSE_NETANN; |
---|
| 662 | } |
---|
| 663 | |
---|
| 664 | ret=ZSetLocation(eset); |
---|
| 665 | if (ret != ZERR_NONE) { |
---|
| 666 | /* |
---|
| 667 | char buff[LINE]; |
---|
| 668 | sprintf(buff, "Error setting location: %s", error_message(ret)); |
---|
| 669 | owl_function_makemsg(buff); |
---|
| 670 | */ |
---|
| 671 | } |
---|
[be0a79f] | 672 | #endif |
---|
[31e48a3] | 673 | } |
---|
| 674 | |
---|
| 675 | void owl_zephyr_zlog_out(void) |
---|
| 676 | { |
---|
[be0a79f] | 677 | #ifdef HAVE_LIBZEPHYR |
---|
[31e48a3] | 678 | int ret; |
---|
| 679 | |
---|
| 680 | ZResetAuthentication(); |
---|
| 681 | ret=ZUnsetLocation(); |
---|
| 682 | if (ret != ZERR_NONE) { |
---|
| 683 | /* |
---|
| 684 | char buff[LINE]; |
---|
| 685 | sprintf(buff, "Error unsetting location: %s", error_message(ret)); |
---|
| 686 | owl_function_makemsg(buff); |
---|
| 687 | */ |
---|
| 688 | } |
---|
[be0a79f] | 689 | #endif |
---|
[31e48a3] | 690 | } |
---|
| 691 | |
---|
[65ad073] | 692 | void owl_zephyr_addbuddy(char *name) |
---|
| 693 | { |
---|
| 694 | char *filename; |
---|
| 695 | FILE *file; |
---|
| 696 | |
---|
| 697 | filename=owl_sprintf("%s/.anyone", owl_global_get_homedir(&g)); |
---|
| 698 | file=fopen(filename, "a"); |
---|
| 699 | owl_free(filename); |
---|
| 700 | if (!file) { |
---|
[ec6ff52] | 701 | owl_function_error("Error opening zephyr buddy file for append"); |
---|
[65ad073] | 702 | return; |
---|
| 703 | } |
---|
| 704 | fprintf(file, "%s\n", name); |
---|
| 705 | fclose(file); |
---|
| 706 | } |
---|
| 707 | |
---|
| 708 | void owl_zephyr_delbuddy(char *name) |
---|
| 709 | { |
---|
| 710 | char *filename; |
---|
| 711 | |
---|
| 712 | filename=owl_sprintf("%s/.anyone", owl_global_get_homedir(&g)); |
---|
| 713 | owl_util_file_deleteline(filename, name, 0); |
---|
| 714 | owl_free(filename); |
---|
| 715 | } |
---|
[9381782] | 716 | |
---|
| 717 | /* return auth string */ |
---|
[09489b89] | 718 | #ifdef HAVE_LIBZEPHYR |
---|
[9381782] | 719 | char *owl_zephyr_get_authstr(ZNotice_t *n) |
---|
| 720 | { |
---|
| 721 | |
---|
| 722 | if (!n) return("UNKNOWN"); |
---|
| 723 | |
---|
| 724 | if (n->z_auth == ZAUTH_FAILED) { |
---|
| 725 | return ("FAILED"); |
---|
| 726 | } else if (n->z_auth == ZAUTH_NO) { |
---|
| 727 | return ("NO"); |
---|
| 728 | } else if (n->z_auth == ZAUTH_YES) { |
---|
| 729 | return ("YES"); |
---|
| 730 | } else { |
---|
| 731 | return ("UNKNOWN"); |
---|
| 732 | } |
---|
| 733 | } |
---|
[09489b89] | 734 | #else |
---|
| 735 | char *owl_zephyr_get_authstr(void *n) |
---|
| 736 | { |
---|
| 737 | return(""); |
---|
| 738 | } |
---|
| 739 | #endif |
---|
[9381782] | 740 | |
---|
[2de4f20] | 741 | /* Returns a buffer of subscriptions or an error message. Caller must |
---|
| 742 | * free the return. |
---|
[09489b89] | 743 | */ |
---|
| 744 | char *owl_zephyr_getsubs() |
---|
| 745 | { |
---|
| 746 | #ifdef HAVE_LIBZEPHYR |
---|
| 747 | int ret, num, i, one; |
---|
| 748 | ZSubscription_t sub; |
---|
| 749 | char *out, *tmpbuff; |
---|
| 750 | one=1; |
---|
| 751 | |
---|
| 752 | ret=ZRetrieveSubscriptions(0, &num); |
---|
| 753 | if (ret==ZERR_TOOMANYSUBS) { |
---|
[c8735aa] | 754 | return(owl_strdup("Zephyr: too many subscriptions\n")); |
---|
| 755 | } else if (ret) { |
---|
| 756 | return(owl_strdup("Zephyr: error retriving subscriptions\n")); |
---|
[09489b89] | 757 | } |
---|
| 758 | |
---|
| 759 | out=owl_malloc(num*500); |
---|
| 760 | tmpbuff=owl_malloc(num*500); |
---|
| 761 | strcpy(out, ""); |
---|
| 762 | for (i=0; i<num; i++) { |
---|
| 763 | if ((ret = ZGetSubscriptions(&sub, &one)) != ZERR_NONE) { |
---|
| 764 | owl_free(out); |
---|
| 765 | owl_free(tmpbuff); |
---|
| 766 | ZFlushSubscriptions(); |
---|
| 767 | out=owl_strdup("Error while getting subscriptions\n"); |
---|
| 768 | return(out); |
---|
| 769 | } else { |
---|
[03955f3] | 770 | sprintf(tmpbuff, "<%s,%s,%s>\n%s", sub.zsub_class, sub.zsub_classinst, sub.zsub_recipient, out); |
---|
[09489b89] | 771 | strcpy(out, tmpbuff); |
---|
| 772 | } |
---|
| 773 | } |
---|
| 774 | |
---|
| 775 | owl_free(tmpbuff); |
---|
| 776 | ZFlushSubscriptions(); |
---|
| 777 | return(out); |
---|
| 778 | #else |
---|
[12c35df] | 779 | return(owl_strdup("Zephyr not available")); |
---|
[09489b89] | 780 | #endif |
---|
| 781 | } |
---|
| 782 | |
---|
| 783 | char *owl_zephyr_get_variable(char *var) |
---|
| 784 | { |
---|
| 785 | #ifdef HAVE_LIBZEPHYR |
---|
| 786 | return(ZGetVariable(var)); |
---|
| 787 | #else |
---|
| 788 | return(""); |
---|
| 789 | #endif |
---|
| 790 | } |
---|
| 791 | |
---|
| 792 | void owl_zephyr_set_locationinfo(char *host, char *val) |
---|
| 793 | { |
---|
| 794 | #ifdef HAVE_LIBZEPHYR |
---|
| 795 | ZInitLocationInfo(host, val); |
---|
| 796 | #endif |
---|
| 797 | } |
---|
| 798 | |
---|
[e3d9c77] | 799 | /* Strip a local realm fron the zephyr user name. |
---|
| 800 | * The caller must free the return |
---|
| 801 | */ |
---|
| 802 | char *short_zuser(char *in) |
---|
| 803 | { |
---|
| 804 | char *out, *ptr; |
---|
| 805 | |
---|
| 806 | out=owl_strdup(in); |
---|
| 807 | ptr=strchr(out, '@'); |
---|
| 808 | if (ptr) { |
---|
| 809 | if (!strcasecmp(ptr+1, owl_zephyr_get_realm())) { |
---|
| 810 | *ptr='\0'; |
---|
| 811 | } |
---|
| 812 | } |
---|
| 813 | return(out); |
---|
| 814 | } |
---|
| 815 | |
---|
| 816 | /* Append a local realm to the zephyr user name if necessary. |
---|
| 817 | * The caller must free the return. |
---|
| 818 | */ |
---|
| 819 | char *long_zuser(char *in) |
---|
| 820 | { |
---|
| 821 | char *ptr; |
---|
| 822 | |
---|
| 823 | if (NULL != (ptr=strchr(in, '@'))) { |
---|
| 824 | return owl_strdup(in); |
---|
| 825 | } else { |
---|
| 826 | return owl_sprintf("%s@%s", in, owl_zephyr_get_realm()); |
---|
| 827 | } |
---|
| 828 | } |
---|
| 829 | |
---|
| 830 | |
---|
| 831 | /* strip out the instance from a zsender's principal. Preserves the |
---|
| 832 | * realm if present. daemon.webzephyr is a special case. The |
---|
| 833 | * caller must free the return |
---|
| 834 | */ |
---|
| 835 | char *owl_zephyr_smartstripped_user(char *in) |
---|
| 836 | { |
---|
| 837 | char *ptr, *realm, *out; |
---|
| 838 | |
---|
| 839 | out=owl_strdup(in); |
---|
| 840 | |
---|
| 841 | /* bail immeaditly if we don't have to do any work */ |
---|
| 842 | ptr=strchr(in, '.'); |
---|
| 843 | if (!strchr(in, '/') && !ptr) { |
---|
| 844 | /* no '/' and no '.' */ |
---|
| 845 | return(out); |
---|
| 846 | } |
---|
| 847 | if (ptr && strchr(in, '@') && (ptr > strchr(in, '@'))) { |
---|
| 848 | /* There's a '.' but it's in the realm */ |
---|
| 849 | return(out); |
---|
| 850 | } |
---|
| 851 | if (!strncasecmp(in, OWL_WEBZEPHYR_PRINCIPAL, strlen(OWL_WEBZEPHYR_PRINCIPAL))) { |
---|
| 852 | return(out); |
---|
| 853 | } |
---|
| 854 | |
---|
| 855 | /* remove the realm from ptr, but hold on to it */ |
---|
| 856 | realm=strchr(out, '@'); |
---|
| 857 | if (realm) realm[0]='\0'; |
---|
| 858 | |
---|
| 859 | /* strip */ |
---|
| 860 | ptr=strchr(out, '.'); |
---|
| 861 | if (!ptr) ptr=strchr(out, '/'); |
---|
| 862 | ptr[0]='\0'; |
---|
| 863 | |
---|
| 864 | /* reattach the realm if we had one */ |
---|
| 865 | if (realm) { |
---|
| 866 | strcat(out, "@"); |
---|
| 867 | strcat(out, realm+1); |
---|
| 868 | } |
---|
| 869 | |
---|
| 870 | return(out); |
---|
| 871 | } |
---|
[5a95b69] | 872 | |
---|
| 873 | /* read the list of users in 'filename' as a .anyone file, and put the |
---|
| 874 | * names of the zephyr users in the list 'in'. If 'filename' is NULL, |
---|
| 875 | * use the default .anyone file in the users home directory. Returns |
---|
| 876 | * -1 on failure, 0 on success. |
---|
| 877 | */ |
---|
| 878 | int owl_zephyr_get_anyone_list(owl_list *in, char *filename) |
---|
| 879 | { |
---|
| 880 | #ifdef HAVE_LIBZEPHYR |
---|
| 881 | char *ourfile, *tmp, buff[LINE]; |
---|
| 882 | FILE *f; |
---|
| 883 | |
---|
| 884 | if (filename==NULL) { |
---|
| 885 | tmp=owl_global_get_homedir(&g); |
---|
| 886 | ourfile=owl_sprintf("%s/.anyone", owl_global_get_homedir(&g)); |
---|
| 887 | } else { |
---|
| 888 | ourfile=owl_strdup(filename); |
---|
| 889 | } |
---|
| 890 | |
---|
| 891 | f=fopen(ourfile, "r"); |
---|
| 892 | if (!f) { |
---|
| 893 | owl_function_error("Error opening file %s: %s", ourfile, strerror(errno) ? strerror(errno) : ""); |
---|
| 894 | owl_free(ourfile); |
---|
| 895 | return(-1); |
---|
| 896 | } |
---|
| 897 | |
---|
| 898 | while (fgets(buff, LINE, f)!=NULL) { |
---|
| 899 | /* ignore comments, blank lines etc. */ |
---|
| 900 | if (buff[0]=='#') continue; |
---|
| 901 | if (buff[0]=='\n') continue; |
---|
| 902 | if (buff[0]=='\0') continue; |
---|
| 903 | |
---|
| 904 | /* strip the \n */ |
---|
| 905 | buff[strlen(buff)-1]='\0'; |
---|
| 906 | |
---|
| 907 | /* ingore from # on */ |
---|
| 908 | tmp=strchr(buff, '#'); |
---|
| 909 | if (tmp) tmp[0]='\0'; |
---|
| 910 | |
---|
| 911 | /* ingore from SPC */ |
---|
| 912 | tmp=strchr(buff, ' '); |
---|
| 913 | if (tmp) tmp[0]='\0'; |
---|
| 914 | |
---|
| 915 | /* stick on the local realm. */ |
---|
| 916 | if (!strchr(buff, '@')) { |
---|
| 917 | strcat(buff, "@"); |
---|
| 918 | strcat(buff, ZGetRealm()); |
---|
| 919 | } |
---|
| 920 | owl_list_append_element(in, owl_strdup(buff)); |
---|
| 921 | } |
---|
| 922 | fclose(f); |
---|
| 923 | owl_free(ourfile); |
---|
| 924 | return(0); |
---|
| 925 | #else |
---|
| 926 | return(-1); |
---|
| 927 | #endif |
---|
| 928 | } |
---|