ES2 MUD LIB :: 東方故事二(ES2) 天朝帝國 mudlib 瀏覽展示

/adm/daemons/smtpd.c

HOME :: adm :: daemons :: smtpd.c
/*  smtpd.c

    Copyright (C) 1994-2000 Annihilator 

    This program is a part of ES2 mudlib. Permission is granted to use,
    modify, copy or distribute this program provided this copyright notice
    remains intact and subject to the restriction that this program MAY
    NOT be used in any way for monetary gain.

    Details of terms and conditions is available in the Copyright.ES2 file.
    If you don't receive this file along with this program, write to the
    primary author of ES2 mudlib: Annihilator 
*/

inherit F_CLEAN_UP;

private void create() { seteuid(getuid()); }

int
restore_mailbox(object ob)
{
    string owner;

    if( getuid(ob) != ROOT_UID || geteuid(ob) != 0)
error("Permission denied.\n");

    owner = geteuid(this_player());
    if( !owner ) return 0;

    seteuid(owner);
    export_uid(ob);
    seteuid(getuid());

    ob->restore();
}

int
send_mail(string from, string to, mapping mail)
{
    object rcpt, mbox;
    int keep_mbox = 0;

    /* 嘗試載入收信人的信札 */
    if( objectp(rcpt = find_player(to))
    && objectp(mbox = rcpt->query_temp("mbox_ob")) )
keep_mbox = 1;
    else {
mbox = new( MAILBOX_OB );
seteuid(to);
export_uid(mbox);
seteuid(getuid());
if( !mbox->restore() ) {
    destruct(mbox);
    return 0;
}
    }

    mbox->receive_mail(mail);
    mbox->save();
    if( ! keep_mbox ) destruct(mbox);
    log_file("MAIL", sprintf("[%s] %s mailed to %s, size = %d\n",
ctime(time()), from, to, strlen(mail["text"])) );
    return 1;
}
HOME :: adm :: daemons :: smtpd.c