New user external editor setup
This commit is contained in:
parent
d07548b16a
commit
c303c4846d
@ -28,6 +28,8 @@ v0.71.3 13-Jun-2005
|
|||||||
|
|
||||||
mbnewuser:
|
mbnewuser:
|
||||||
Added logging of remote host and terminal.
|
Added logging of remote host and terminal.
|
||||||
|
If the external editor is configured a new user gets the
|
||||||
|
external editor by default instead of the internal editor.
|
||||||
|
|
||||||
mball:
|
mball:
|
||||||
If a valid WWW logfile is specified in menu 1.13.4 then http
|
If a valid WWW logfile is specified in menu 1.13.4 then http
|
||||||
|
12
TODO
12
TODO
@ -35,25 +35,17 @@ libdiesel.a:
|
|||||||
processed, instead the previous macro value will be returned.
|
processed, instead the previous macro value will be returned.
|
||||||
|
|
||||||
mbsebbs:
|
mbsebbs:
|
||||||
X: Better word wrapping or paragraph justification in editor.
|
|
||||||
|
|
||||||
N: OLR, implement file requests.
|
N: OLR, implement file requests.
|
||||||
|
|
||||||
N: Only count posted messages in local mail areas.
|
N: Only count posted messages in local mail areas.
|
||||||
|
|
||||||
L: ChangeHandle, allow own unix name as handle.
|
L: ChangeHandle, allow own unix name as handle.
|
||||||
|
|
||||||
X: OLR: tagged areas must have 3 states, off, on or personal only.
|
|
||||||
|
|
||||||
X: OLR: implement limit date function.
|
|
||||||
|
|
||||||
X: OLR: include private email area in download packets. See also global
|
X: OLR: include private email area in download packets. See also global
|
||||||
wish for private mail areas.
|
wish for private mail areas.
|
||||||
|
|
||||||
X: OLR: implement some global settings from the offline configuration.
|
X: OLR: implement some global settings from the offline configuration.
|
||||||
|
|
||||||
X: OLR: implement keywords and filters.
|
|
||||||
|
|
||||||
X: OLR: check qwke extensions.
|
X: OLR: check qwke extensions.
|
||||||
|
|
||||||
N: OLR: qwk, check netmail entered from reader, fido address missing?
|
N: OLR: qwk, check netmail entered from reader, fido address missing?
|
||||||
@ -61,10 +53,6 @@ mbsebbs:
|
|||||||
N: Translate characterset of messages to the users preferred
|
N: Translate characterset of messages to the users preferred
|
||||||
characterset. This is partly done for testing.
|
characterset. This is partly done for testing.
|
||||||
|
|
||||||
newuser:
|
|
||||||
L: Allow handles to be the same as the unixname. Most menus allow this,
|
|
||||||
still needed?
|
|
||||||
|
|
||||||
mbfido:
|
mbfido:
|
||||||
N: Check all .flo files for dead attachments.
|
N: Check all .flo files for dead attachments.
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
* BBS and unix accounts.
|
* BBS and unix accounts.
|
||||||
*
|
*
|
||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
* Copyright (C) 1997-2004
|
* Copyright (C) 1997-2005
|
||||||
*
|
*
|
||||||
* Michiel Broek FIDO: 2:280/2802
|
* Michiel Broek FIDO: 2:280/2802
|
||||||
* Beekmansbos 10
|
* Beekmansbos 10
|
||||||
@ -102,6 +102,11 @@ int newuser()
|
|||||||
FullName = calloc(81, sizeof(char));
|
FullName = calloc(81, sizeof(char));
|
||||||
|
|
||||||
usrconfig.iLanguage = iLang;
|
usrconfig.iLanguage = iLang;
|
||||||
|
|
||||||
|
/* Set default editor */
|
||||||
|
if (strlen(CFG.externaleditor))
|
||||||
|
exitinfo.MsgEditor = EXTEDIT;
|
||||||
|
else
|
||||||
usrconfig.MsgEditor = FSEDIT;
|
usrconfig.MsgEditor = FSEDIT;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
|
Reference in New Issue
Block a user