The logfile name for bti to write what happened to\&. This file is relative to the user\'s home directory\&. If this file is not specified here or on the command line, no logging will be written to the disk\&.
.RE
.PP
+\fBreplyto\fR
+.RS 4
+The status ID to which all notices will be linked to\&.
+.sp
+There is no sane reason for a need to have this set in a config file\&. One such reason is to have all your messages as children to a particular status\&.
+.RE
+.PP
\fBshrink\-urls\fR
.RS 4
Setting this variable to \'true\' or \'yes\' will enable the URL shrinking feature\&. This is equivalent to using the \-\-shrink\-urls option\&.
char *logfile = NULL;
char *action = NULL;
char *user = NULL;
+ char *replyto = NULL;
char *file;
int shrink_urls = 0;
c += 8;
if (c[0] != '\0')
logfile = strdup(c);
+ } else if (!strncasecmp(c, "replyto", 7) &&
+ (c[7] == '=')) {
+ c += 8;
+ if (c[0] != '\0')
+ replyto = strdup(c);
} else if (!strncasecmp(c, "action", 6) &&
(c[6] == '=')) {
c += 7;
}
if (logfile)
session->logfile = logfile;
+ if (replyto)
+ session->replyto = replyto;
if (action) {
if (strcasecmp(action, "update") == 0)
session->action = ACTION_UPDATE;
</para>
</listitem>
</varlistentry>
+ <varlistentry>
+ <term><option>replyto</option></term>
+ <listitem>
+ <para>
+ The status ID to which all notices will be linked to.
+ </para>
+ <para>
+ There is no sane reason for a need to have this set in a
+ config file. One such reason is to have all your messages
+ as children to a particular status.
+ </para>
+ </listitem>
+ </varlistentry>
<varlistentry>
<term><option>shrink-urls</option></term>
<listitem>