• WM_FORCEFWD

    From Ragnarok@docksud.com.ar to DOVE-Net.Synchronet_Discussion on Wed Jul 31 22:21:45 2019
    I try to send a intenal email to another user form js.

    u = system.matchuser("ragnarok");

    bbs.email(u, '', "the subject', WM_EMAIL);

    if i use the WM_FORCEFWD flag, this show "from user@domain to ragnarok@bbs.docksud.com.ar (internet addreses)

    if not use WM_FORCEFWD, i have the prompt for it, and i need to select
    NO to get internal email (user to user)

    its posible to avoid these prompt and get directly the email as user to
    user?
    thanks!
  • From Digital Man@VERT to Ragnarok on Thu Aug 1 00:34:48 2019
    Re: WM_FORCEFWD
    By: Ragnarok to DOVE-Net.Synchronet_Discussion on Wed Jul 31 2019 10:21 pm

    I try to send a intenal email to another user form js.

    u = system.matchuser("ragnarok");

    bbs.email(u, '', "the subject', WM_EMAIL);

    if i use the WM_FORCEFWD flag, this show "from user@domain to ragnarok@bbs.docksud.com.ar (internet addreses)

    if not use WM_FORCEFWD, i have the prompt for it, and i need to select
    NO to get internal email (user to user)

    its posible to avoid these prompt and get directly the email as user to user?

    If you want to globally disallow forwarding to netmail, you can set SCFG->Message Options->Allow Forwarding to NetMail to "No".

    If you only want to disable it on one specific call to bbs.email(), I could add a new mode flag (e.g. WM_NOFWD). Is that want you're looking for?

    digital man

    Synchronet "Real Fact" #53:
    Synchronet Blackjack was the first multi-node/multi-user game for Synchronet. Norco, CA WX: 66.2øF, 87.0% humidity, 0 mph SSE wind, 0.00 inches rain/24hrs ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Ragnarok@docksud.com.ar to Digital Man on Thu Aug 1 19:45:25 2019
    El 1/8/19 a las 04:34, Digital Man escribió:
    Re: WM_FORCEFWD
    By: Ragnarok to DOVE-Net.Synchronet_Discussion on Wed Jul 31 2019 10:21 pm

    I try to send a intenal email to another user form js.

    u = system.matchuser("ragnarok");

    bbs.email(u, '', "the subject', WM_EMAIL);

    if i use the WM_FORCEFWD flag, this show "from user@domain to ragnarok@bbs.docksud.com.ar (internet addreses)

    if not use WM_FORCEFWD, i have the prompt for it, and i need to select
    NO to get internal email (user to user)

    its posible to avoid these prompt and get directly the email as user to user?

    If you want to globally disallow forwarding to netmail, you can set SCFG->Message Options->Allow Forwarding to NetMail to "No".

    If you only want to disable it on one specific call to bbs.email(), I could add a new mode flag (e.g. WM_NOFWD). Is that want you're looking for?

    yeap!, i want to send mail to another user and avoid forward (also avoid prompt)

    =)
  • From Digital Man@VERT to Ragnarok on Thu Aug 1 18:41:03 2019
    Re: Re: WM_FORCEFWD
    By: Ragnarok to Digital Man on Thu Aug 01 2019 07:45 pm

    El 1/8/19 a las 04:34, Digital Man escribió:
    Re: WM_FORCEFWD
    By: Ragnarok to DOVE-Net.Synchronet_Discussion on Wed Jul 31 2019 10:21 pm

    I try to send a intenal email to another user form js.

    u = system.matchuser("ragnarok");

    bbs.email(u, '', "the subject', WM_EMAIL);

    if i use the WM_FORCEFWD flag, this show "from user@domain to ragnarok@bbs.docksud.com.ar (internet addreses)

    if not use WM_FORCEFWD, i have the prompt for it, and i need to select NO to get internal email (user to user)

    its posible to avoid these prompt and get directly the email as user to user?

    If you want to globally disallow forwarding to netmail, you can set SCFG->Message Options->Allow Forwarding to NetMail to "No".

    If you only want to disable it on one specific call to bbs.email(), I could add a new mode flag (e.g. WM_NOFWD). Is that want you're looking for?

    yeap!, i want to send mail to another user and avoid forward (also avoid prompt)

    Okay, you should be able to use the new WM_NOFWD mode flag for bbs.email() then.

    digital man

    Synchronet "Real Fact" #61:
    How to get Synchronet technical support: http://wiki.synchro.net/howto:support Norco, CA WX: 85.8øF, 41.0% humidity, 15 mph E wind, 0.00 inches rain/24hrs
    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Ragnarok@docksud.com.ar to Digital Man on Fri Aug 2 19:26:19 2019
    El 1/8/19 a las 22:41, Digital Man escribió:


    yeap!, i want to send mail to another user and avoid forward (also avoid prompt)

    Okay, you should be able to use the new WM_NOFWD mode flag for bbs.email() then.

    digital man

    yahhh rock and rollllll!
  • From Ragnarok@docksud.com.ar to Digital Man on Sat Aug 3 23:50:38 2019
    El 1/8/19 a las 22:41, Digital Man escribió:

    yeap!, i want to send mail to another user and avoid forward (also avoid prompt)

    Okay, you should be able to use the new WM_NOFWD mode flag for bbs.email() then.

    digital man

    thanks!, this perform the behavior I needed!!