Changes in / [ee310eb:99219ed]


Ignore:
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • fmtext.c

    raf1920fd r005fc22  
    536536  }
    537537  dst->textlen=src->textlen;
     538  dst->bufflen=mallocsize;
    538539  dst->textbuff=owl_malloc(mallocsize);
    539540  memcpy(dst->textbuff, src->textbuff, src->textlen+1);
  • variable.c

    raf1920fd r247cbc9  
    208208               "messages.  It will not be run again until the first\n"
    209209               "instance exits"),
     210
     211  OWLVAR_STRING( "zsender" /* %OwlVarStub */, "",
     212             "zephyr sender name",
     213         "Allows you to customize the outgoing username in\n"
     214         "zephyrs.  If this is unset, it will use your Kerberos\n"
     215         "principal. Note that customizing the sender name will\n"
     216         "cause your zephyrs to be sent unauthenticated."),
    210217
    211218  OWLVAR_STRING( "zsig" /* %OwlVarStub */, "",
  • zephyr.c

    r10e3963 r247cbc9  
    539539  }
    540540  notice.z_default_format="Class $class, Instance $instance:\nTo: @bold($recipient) at $time $date\nFrom: @bold{$1 <$sender>}\n\n$2";
    541   notice.z_sender=NULL;
     541  if (*owl_global_get_zsender(&g))
     542      notice.z_sender=owl_global_get_zsender(&g);
     543  else
     544      notice.z_sender=NULL;
    542545  if (opcode) notice.z_opcode=opcode;
    543546
Note: See TracChangeset for help on using the changeset viewer.