Email template, no recipient address

Hi all,
I'm trying to send an account creation notification, but keep getting this error:
Failure sending email: com.waveset.exception.ServiceNotResponding: ==> javax.mail.SendFailedException: No recipient addresses
But if i redirect the same message to a txt file (as set in Waveset.Properties), the email created does have the correct toAddress specified.
Any suggestions?
Message was edited by:
tine_de_mik
Message was edited by:
tine_de_mik

sending email is a pretty straight forward thing in SIM.Write the SMTP host address and toaddress.Thats it .You are all set.Why dont you write a workflow to just send email and see whether you get the same error.

Similar Messages

  • Email Templates - Addressing as CC and BCC?

    How do you address an email so that it the recipient email shows in the CC or BCC box?
    Is there a way to set up email templates so that a "copied" or "blind copied" recipient sees their email in the corresponding CC: or BCC: field?  (I am trying to get around the issue of addressing email directly to Customers when I really want to Copy or Blind Copy them.  Is this possible?  Using RC2009.1.
    --Thanks everyone/anyone.

    Hi Mark,
          Please check below link. It will give you idea for your issue:
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2c678dc3-0401-0010-3c80-8ef48f450491">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2c678dc3-0401-0010-3c80-8ef48f450491</a>
    Regards,
    Subhasha

  • I would like to find out how I can setup my Mac Air to allow me to have an email template open up in Outlook instead of Mail when I click on an email address on a website.

    Can anyone help me with setting up my Mac Air, to allow me to have an email template open up in Outlook instead of Mail when I click on an email address on a website?

    All the limits you mention 100 e-mails at a time and 500 in a four hour time frame are limitations imposed by your mail provider, not Thunderbird. Thunderbird places no restrictions on the maximum number of recipients.
    Have you tried turning your computer off for a few minutes?

  • When I try to send an email I get a message - Non ASCII characters in the local part of the recipient address.

    I am trying to send an emails to Italy. When I click send I get a message ( Non-ASCII characters in the local part of the recipient address). [email protected]  is one of the email address I am trying to send to. My other email address' work OK. I have sent emails to these Italian address before with no problem.

    Restart the operating system in '''[http://en.wikipedia.org/wiki/Safe_mode safe mode with Networking]'''. This loads only the very basics needed to start your computer while enabling an Internet connection. Click on your operating system for instructions on how to start in safe mode: [http://windows.microsoft.com/en-us/windows-8/windows-startup-settings-including-safe-mode Windows 8], [http://windows.microsoft.com/en-us/windows/start-computer-safe-mode#start-computer-safe-mode=windows-7 Windows 7], [http://windows.microsoft.com/en-us/windows/start-computer-safe-mode#start-computer-safe-mode=windows-vista Windows Vista], [http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/boot_failsafe.mspx?mfr=true" Windows XP], [http://support.apple.com/kb/ht1564 OSX]
    ; If safe mode for the operating system fixes the issue, there's other software in your computer that's causing problems. Possibilities include but not limited to: AV scanning, virus/malware, background downloads such as program updates.

  • How to pass more than one email address in email template

    Hi all.
    I need to pass email address list in TO field of email template.I passed the list with comma delimeter but even though mail is trigerring only to the first email address in the list...
    If any one come across this please mail me...
    It is bit urgent....
    Thanks in advance....

    Hi Thanks for your reply.
    No there is no space between two mail ids and also i tried by hardcoding the email id's in TO field even though mail is not triggering....
    Through rules i am pasisng the notifer list.Just i am calling the rules in variable and passing that variable in TO field....
    Is there any other way to solve this problem...

  • Restoring iPhone to get rid of unwanted email recipient addresses

    I have been told that the only way to get rid unwanted previous email recipient addresses is to restore the phone.  How do I restore the phone?

    WOW! Amazing! That did the trick, thanks!! Amazing how long you can use a Mac and still learn new stuff.

  • Unwanted email recipient addresses won't go away on iPhone4.

    How do I prevent my iPhone 4 from displaying email addresses or PREVIOUS recipients (that are not in my contact list) when I begin to email a current recipient.  There are certain email addresses from previous emails that I would like to get rid of, but can't. 

    The only way to get rid of them is to restore the phone.

  • Invalid recipient address - while sending mails

    Hi Experts,
    I am trying to send a PDF form as a mail attachment from my SAP R/3 server (version ECC 6.0)
    Using the following code:
    PARAMETER : p_addr TYPE adr6-smtp_addr DEFAULT  'ashish.shah xyz.com'.
    *"Look up the generated function for the Book Flight Form
    DATA : l_name TYPE funcname.
    TRY.
        CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
          EXPORTING
            i_name     = 'Z_CUST_BOOK_FLIGHT_FORM'
          IMPORTING
            e_funcname = l_name
          EXCEPTIONS
            OTHERS     = 0.
      CATCH cx_fp_api_repository.                           "#EC NO_HANDLER
      CATCH cx_fp_api_usage.                                "#EC NO_HANDLER
      CATCH cx_fp_api_internal.                             "#EC NO_HANDLER
    ENDTRY.
    DATA : l_outputparams TYPE sfpoutputparams.
    *"Start form processing
    l_outputparams-getpdf = 'X'.
    CALL FUNCTION 'FP_JOB_OPEN'
      CHANGING
        ie_outputparams = l_outputparams
      EXCEPTIONS
        cancel          = 1
        usage_error     = 2
        system_error    = 3
        internal_error  = 4
        OTHERS          = 5.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    *" Call the generated function for the Book Flight Form
    DATA : fp_docparams TYPE sfpdocparams,
           reservedonly TYPE bapisbodat-reserved,
           booking_data TYPE bapisbonew,
           fp_result    TYPE fpformoutput.
    fp_docparams-fillable = 'X'.
    fp_docparams-langu = sy-langu.
    CALL FUNCTION l_name
      EXPORTING
        /1bcdwb/docparams  = fp_docparams
        reserved           = reservedonly
        booking_data       = booking_data
      IMPORTING
        /1bcdwb/formoutput = fp_result
      EXCEPTIONS
        usage_error        = 1
        system_error       = 2
        internal_error     = 3
        OTHERS             = 4.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    DATA : pdf TYPE fpformoutput-pdf.
    pdf = fp_result-pdf.
    *"End the form Processing session
    CALL FUNCTION 'FP_JOB_CLOSE'
      EXCEPTIONS
        usage_error    = 1
        system_error   = 2
        internal_error = 3
        OTHERS         = 4.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    *"Create and send the email
    DATA : bcs_exception TYPE REF TO cx_bcs.
    TRY.
    *"Add text to the email body
        DATA : l_subject      TYPE so_obj_des,
               l_mailtext     TYPE bcsy_text,
               l_mailtext_row TYPE soli.
        l_subject = 'Trip Creation Form'.
        CONCATENATE 'Please fill out the form and return it to:'
                    'ashish.shah xyz.com'
                    INTO l_mailtext_row.
        APPEND l_mailtext_row TO l_mailtext.
    *"Create the email document
        DATA : document   TYPE REF TO cl_document_bcs,
               num_rows   TYPE i,
               textlength TYPE so_obj_len.
        DESCRIBE TABLE l_mailtext LINES num_rows.
        num_rows = num_rows * 255.
        MOVE num_rows TO textlength.
        document = cl_document_bcs=>create_document(
                     i_type    = 'RAW'
                     i_text    = l_mailtext
                     i_length  = textlength
                     i_subject = l_subject ).
    *"Add ataachment
        DATA : attdoctype TYPE soodk-objtp,
               atttitle   TYPE sood-objdes,
               attsize    TYPE sood-objlen,
               pdftab     TYPE solix_tab.
        attdoctype = 'pdf'.
        atttitle = 'CreateFlight'.
        attsize = XSTRLEN( pdf ).
        pdftab = cl_document_bcs=>xstring_to_solix(
                    ip_xstring = pdf ).
        document->add_attachment( EXPORTING i_attachment_type = attdoctype
                                            i_attachment_subject = atttitle
                                            i_attachment_size = attsize
                                            i_attachment_language = sy-langu
                                            i_att_content_hex = pdftab ).
    *"Create persistent send request
        DATA : send_request TYPE REF TO cl_bcs.
        send_request = cl_bcs=>create_persistent( ).
    *"Add document to send request
        send_request->set_document( document ).
    *"Get sender object
        DATA : sender TYPE REF TO cl_sapuser_bcs.
        sender = cl_sapuser_bcs=>create( 'A146861' ) .
    *"Add sender
        CALL METHOD send_request->set_sender
          EXPORTING
            i_sender = sender.
    *"Create recipient
        DATA : recipient TYPE REF TO if_recipient_bcs.
        recipient = cl_cam_address_bcs=>create_internet_address(
                                                  p_addr ).
    *"Add recipient with its respective attributes to send request
        send_request->add_recipient( EXPORTING i_recipient = recipient ).
    *"Set send immediately
        send_request->set_send_immediately( 'X' ).
    *"Send document
        send_request->send( ).
        COMMIT WORK.
        WRITE: 'Email coantaining the Interactive form was sent'.
      CATCH cx_bcs INTO bcs_exception.
        DATA : ex_msg TYPE string.
        ex_msg = bcs_exception->get_text( ).
        WRITE: 'Caught exception.', ex_msg.
    ENDTRY.
    I get a Mail sending failure notification in my SAP Businesss work place, with the title "Cannot be sent: Trip Creation Form " With status as :
    Status for Recipient ashish.shah xyz.com:
         No delivery to ashish.shah xyz.com, invalid recipient address
    I have entered the correct Email IDs, but still getting this error.
    Can you guys help?
    Regards,
    Ashish Shah

    Hi Ravi,
    I have @ in all the email IDs in my code , but i have removed it from this post.
    It seems SDN has implemented some new check - where in it checks for Email IDs in the post and gives error when any email ID is encountered.
    Can you now spot anything else , which could be the cause for the status as Invalid receipient?
    Regards,
    Ashish Shah

  • Error while entering Long message in Email Template

    Hi All,
    While Creating Email template with 28 kb data as Long message field in OIM 11g R2 Im getting error like "Invalid size of inputs in en_US in Locale  " so unable to save and please provide the solution Is there any changes in property or something?
    Thanks
    Kowsalya

    Yes that is right what is mentioned above, first you give the company code and name then give the currency then select address (Shift+F5) and in that if you select country as IN then it will automatically come to master data.
    Edited by: venkata986 on Aug 31, 2010 12:31 PM

  • Forward email to a specific address to an Exchange mailbox

    I would like to know if it is possible to forward email to a specific address (for an Identity that doesn't exist) to a user's mailbox.
    Example: when our employees are terminated we delete their active directory accounts and email mailbox.  I'd like to be able to still forward any email to their old email address to their supervisor.
    Alternately I could set up the terminated employee as a mail contact: could I then set up the forwarding rule?

    Hi,
    Agree with the above suggestions, we can use transport rule:
    The recipient is 
    Redirect the message to
    For more information, you can refer to the followng articles:
    Transport Rule Predicates:
    http://technet.microsoft.com/en-us/library/dd638183(v=exchg.150).aspx
    Transport Rule Actions:
    http://technet.microsoft.com/en-us/library/aa998315(v=exchg.150).aspx
    Thanks,
    Angela Shi
    TechNet Community Support

  • Task termination due to sending of out of box email templates

    Hi,
    We are using custom templates to notify end user during creation, group approval and deletion process. Handling of proper template has taken care in workflow.
    Instead of deleting the Out of box templates, the smtp address has changed to "1.0.0.0", to make sure end user won't receive these templates even its triggered by mistake.
    In group approval scenario during update of a user, approver is getting an email notification through custom template and workitem is adding into approver's bin but randomly observing that the task is getting terminated with error message "javax.mail.SendFailedException: Sending failed; nested exception is: javax.mail.MessagingException: Could not connect to SMTP host: 1.0.0.0, port: 25; nested exception is: java.net.ConnectException: Connection timed out: connect".
    This could be due to IDM sending default templates (as SMTP host: 1.0.0.0 is present only in default templates).
    Due to this no action is getting executed upon the group approval request approved by the approver as main update task itself has terminated ( it makes sense).
    Workflow trace shows task has executed fine with no errors.
    Can any one help us why out of box templates is kicked off though custom templates names were set in workflow??
    Is there a mapping of templates with scenario similar to form and process mapping??
    Is deletion of out of box templates affect the system as we no where using??
    Regards,
    Laxmi

    vilynne46 wrote:
    Denial Letter: I don't understand something i have 3 Synchrony bank accounts, Which 2 of them have a zero balance of $102.00 dollars  which I will pay off on Monday  and I was denied for a BP gas credit card .I totally disagree with the reasons you gave for the denial as my credit report says nothing of the sort. If you really check my credit report you will see that I pay my bills on time I have never been late for the past seven years, I had a Bankruptcy in 2008 because I co signed for my step daughter for a house and she reniged on the payments and they came after me , so my Attorney suggested I claim bankruptcy, But if you check I always paid my bills on time every month Even before the Bankruptcy. I earn a good living , and I do not have any financial problems. My wife and I both use BP Gas as it is right down the street from our house, so rechecking my credit report will show you I always pay my bills on time  Sincerly Victor GrecoDenial reference # is Loo22tWelcome to MyFico. Just so you know this is not Synchrony Bank but the forums for Fico, the issuer of credit scores.  If you wish to communicate with Synchrony, you need to contact them directly though they are not known to overturn their credit decisions.  Good luck

  • #550 5.1.3 STOREDRV.Submit; invalid recipient address #SMTP# Exchange 2010

    We have one user who is getting undeliverable bounces for some emails they send. These bounces look like
    Delivery has failed to these recipients or groups:
    The format of the e-mail address isn't correct. A correct address looks like this:
    [email protected] Please check the recipient's e-mail address and try to resend the message.
    With the header:
    #550 5.1.3 STOREDRV.Submit; invalid recipient address #SMTP#
    Original message headers:
    Received: from xxxxxxxx ([2002:80e8:f350::80e8:f350]) by
     xxxxxxx ([::1]) with mapi id 14.02.0298.004; Wed, 5 Sep
     2012 11:30:27 +0100
    Content-Type: application/ms-tnef; name="winmail.dat"
    Content-Transfer-Encoding: binary
    From: xxxxxx
    To: xxxxx
    Subject: FW:
    Thread-Topic: Economics
    Thread-Index: Ac2GxPSoAC0JPealQhq9mnAnQxf7SQEiPj2gAADJepA=
    Date: Wed, 5 Sep 2012 11:30:27 +0100
    Message-ID: <7D0ACDCF411B26429DC7355744AEFF9A02D8AC@xxxxxx>
    Accept-Language: en-GB, en-US
    Content-Language: en-US
    X-MS-Has-Attach: yes
    X-MS-TNEF-Correlator: <7D0ACDCF411B26429DC7355744AEFF9A02D8AC@xxxxxxx>
    MIME-Version: 1.0
    X-Originating-IP: [xxx.xxx.xxx.xx]
    So far most of the bounces for this user appear to be to the same domain which takes the format xxx.ac.uk our domain is yyy.xxx.ac.uk
    We are currently using Exchange 2010 having migrated in the last month from 2003. We are also using an Edge server.
    Thanks for any help

    On Wed, 5 Sep 2012 11:52:43 +0000, Rah33 wrote:
    >I have noticed that so far the addresses that have bounced back are Mail Contacts that have been created on the Exchange server. If you go into the properties for one of these contacts you get a message saying that some properties are invalid and will
    be replaced with defaults. It also prompts to update the contact.
    If you update the contact does it eliminate the problem?
    What properties are invalid? It isn't uncommon to find "alias"
    properties that contain spaces or other characters that earlier
    versions (i.e. pre-Exchange 2007) allowed.
    Rich Matheisen
    MCSE+I, Exchange MVP
    --- Rich Matheisen MCSE+I, Exchange MVP

  • Email templates using data from iWork Numbers spreadsheet

    As a photographer, when I get a call from a client to book a shoot, my first step is to open my bookings spreadsheet in Apple's Numbers and input the client's info into pre-determined columns: name, phone number, job date, job scheduled arrival time, job address, job city, travel distance, details regarding the shoot, and then I have a list of columns that specify costs (cost for work, taxes, travel, etc--automatically calculated via functions in spreadsheet).
    Immediately after I insert this information into the bookings spreadsheet, I open another file (a text file)--a text template I created to confirm bookings--and fill in the blanks using the information from the spreadsheet. Once that info has been filled out, I copy and paste the entire text file into an an email and email it to the client for his confirmation/records. The email template text (txt) file I use is included below.
    Question: Is it possible to create a script that will read the specified row in my Numbers booking spreadsheet (ie, the row where I input the information in the spreadsheet) and have the information inserted into the separate text confirmation template (apple pages or text or email?) at specified areas within the text? If so, can someone help me make something like this? Here's the template I use:
    Hi clientnamehere
    It was nice chatting with you. And thanks again for choosing us for your photography needs.
    For your convenience, I've outlined the details of your booking below. Please ensure everything looks OK:
    _Order Confirmation_
    As discussed, we've booked the following services:
    - [deletethose_that_don't_apply_incl_thisnote]
    - real estate photos
    - upscaling photos
    - virtual tour
    - hd video tour
    - customizable slideshow
    - floor plans
    - brochure design, print, & delivery
    - virtual staging
    - photoshop touchups
    For the following location:
    - property_address, city, postal_code
    On the following date and time:
    - month_date at time
    Note: If any of the above is incorrect in anyway, please email us asap.
    concision edit
    Message was edited by: thebigother

    Let's begin with your first question:
    I've tried to change the "Template.txt" file into an rtf so that I can apply bolding and underlining to certain sections (ie, bolding to the entries like client_name, job_date, etc... and underlining to the "Steps"), and I changed the script from Template.txt to Template.rtf to reflect this change... but when I run a script I get a bug... is there any way to use an rtf file in place of the txt?
    The following script should work with an RTF file, provided you don't mind using [GUI Scripting|http://www.macosxautomation.com/applescript/uiscripting/index.html] (in blue below). Before running the script, you will have to enable the Accessibility Frameworks by clicking the checkbox labeled "Enable access for assistive devices" in the Universal Access System Preference pane.
    *set theTemplate to POSIX file (POSIX path of (path to desktop) & "Template.rtf")*
    *tell application "Numbers"*
    *   tell table 1 of sheet 1 of front document*
    *      set theValues to value of cells of row 1 of selection range*
    *   end tell*
    *end tell*
    *tell application "TextEdit"*
    *   open theTemplate*
    *   set theText to text of front document*
    *end tell*
    *set theText to replace("clientnamehere", item 1 of theValues, theText)*
    *set theText to replace("property_address", item 2 of theValues, theText)*
    *set theText to replace("city", item 3 of theValues, theText)*
    *set theText to replace("postal_code", item 4 of theValues, theText)*
    *set theText to replace("month_date", item 5 of theValues, theText)*
    *set theText to replace("at time", "at " & item 6 of theValues, theText)*
    *tell application "TextEdit"*
       activate
    *   tell application "System Events"*
    *      keystroke "a" using command down* -- “Select All”
    *      keystroke "c" using command down* -- “Copy”
    *   end tell*
    *   close front document without saving*
    *end tell*
    *tell application "Mail"*
       activate
    *   make new outgoing message with properties {visible:true}*
    *   tell application "System Events"*
    *      keystroke tab & tab & tab & tab & tab* -- five 5 text fields at most
    *      delay 0.25* -- adjust if necessary
    *      keystroke "a" using command down* -- “Select All”
    *      keystroke "v" using command down* -- “Paste”
    *   end tell*
    *end tell*
    *on replace(X, Y, theText)*
    *   set P to offset of X in theText*
    *   set L to length of X*
    *   tell front document of application "TextEdit"*
    *      delete (characters (P + 1) through (P + L - 1))*
    *      set character P to Y*
    *      return its text*
    *   end tell*
    *end replace*

  • Recipient address rejected : Access denied (in reply to RCPT TO command)

    Hi,
    I run Mac OS X Server 10.5.5 with mail service. smtp is on port 587. I created an account which only forward to another account on an external domain.
    When trying to send a mail from outside to that account, the sender receive "554 5.7.1 <[email protected]>: Recipient address rejected : Access denied (in reply to RCPT TO command)".
    Any idea?
    Kind regards,
    Xavier.
    Here is my postconf:
    command_directory = /usr/sbin
    config_directory = /etc/postfix
    content_filter = smtp-amavis:[127.0.0.1]:10024
    daemon_directory = /usr/libexec/postfix
    debugpeerlevel = 2
    enableserveroptions = yes
    html_directory = no
    inet_interfaces = all
    localrecipientmaps =
    luser_relay = xavier
    mail_owner = _postfix
    mailboxsizelimit = 0
    mailbox_transport = cyrus
    mailq_path = /usr/bin/mailq
    manpage_directory = /usr/share/man
    messagesizelimit = 20971520
    mydestination = $myhostname,localhost.$mydomain,localhost,jehin.net
    mydomain = jehin.net
    mydomain_fallback = localhost
    myhostname = mail.jehin.net
    mynetworks = 127.0.0.0/8
    newaliases_path = /usr/bin/newaliases
    queue_directory = /private/var/spool/postfix
    readme_directory = /usr/share/doc/postfix
    relayhost = relay.skynet.be
    sample_directory = /usr/share/doc/postfix/examples
    sendmail_path = /usr/sbin/sendmail
    setgid_group = _postdrop
    smtpdenforcetls = no
    smtpdpw_server_securityoptions = none
    smtpdrecipientrestrictions = permitmynetworks,reject_unauthdestination,permit
    smtpdsasl_authenable = no
    smtpdtls_certfile = /etc/certificates/Default.crt
    smtpdtls_keyfile = /etc/certificates/Default.key
    smtpdtlsloglevel = 0
    smtpduse_pwserver = no
    smtpdusetls = yes
    unknownlocal_recipient_rejectcode = 550
    virtualmailboxdomains = hash:/etc/postfix/virtual_domains
    virtual_transport = lmtp:unix:/var/imap/socket/lmtp

    I apologize... Was trying to find a solution too and looks like I forgot to inform you about that point ...
    This is the new result in log (for an outside mail):
    Oct 27 22:26:54 jehin postfix/tlsmgr[15509]: warning: no entropy source specified with parameter tlsrandomsource
    Oct 27 22:26:54 jehin postfix/tlsmgr[15509]: warning: encryption keys etc. may be predictable
    Oct 27 22:26:54 jehin postfix/smtpd[15508]: connect from mhfr-03-bos.mailhop.org[63.208.196.167]
    Oct 27 22:26:55 jehin postfix/trivial-rewrite[15511]: warning: do not list domain jehin.net in BOTH mydestination and virtualmailboxdomains
    Oct 27 22:26:55 jehin postfix/smtpd[15508]: NOQUEUE: reject: RCPT from mhfr-03-bos.mailhop.org[63.208.196.167]: 554 5.7.1 <[email protected]>: Recipient address rejected: Access denied; from=<[email protected]> to=<[email protected]> proto=SMTP helo=<mhfr-03-bos.mailhop.org>
    Oct 27 22:26:55 jehin postfix/smtpd[15508]: disconnect from mhfr-03-bos.mailhop.org[63.208.196.167]
    Telnet test:
    sh-3.2# telnet jehin.net 587
    Trying 81.245.99.141...
    Connected to jehin.net.
    Escape character is '^]'.
    220 mail.jehin.net ESMTP Postfix
    helo me
    250 mail.jehin.net
    mail from:
    250 2.1.0 Ok
    rcpt to:<[email protected]>
    554 5.7.1 <[email protected]>: Recipient address rejected: Access denied
    quit
    221 2.0.0 Bye
    Connection closed by foreign host.
    its log:
    Oct 27 22:29:02 jehin postfix/smtpd[15528]: connect from unknown[10.185.112.199]
    Oct 27 22:30:11 jehin postfix/trivial-rewrite[15532]: warning: do not list domain jehin.net in BOTH mydestination and virtualmailboxdomains
    Oct 27 22:30:11 jehin postfix/smtpd[15528]: NOQUEUE: reject: RCPT from unknown[10.185.112.199]: 554 5.7.1 <[email protected]>: Recipient address rejected: Access denied; from= to=<[email protected]> proto=SMTP helo=<me>
    Oct 27 22:30:20 jehin postfix/smtpd[15528]: disconnect from unknown[10.185.112.199]

  • Blind carbon copy in email templates?

    Hello,
    how can I use blind carbon copy (bcc) in email templates?
    I added the field to the E-Mail Template und modify the waveset.dtd, but this is not enough.
    How can I use a BCC to an email template on IDM?
    Thanks

    Good morning.
    This is actually a bug:
    Bug 12699 - RFE: add support for BCC recipient to email notification
    IDM 8.1.1 will be the first available version to contain the fix.
    Regards,
    Alex

Maybe you are looking for

  • Trying to Submit an App to Vendor Portal. Can't get it to work.

    HI,   I've spent about 14 hours trying to submit an App to the Vendor portal.   Running FIrefox 3.0.19 on Windows XP, SP3.  Seems the push-buttons and forms just won't work.  I've updated to the latest JRE 6.0.250.10 runtime, and still no luck. Sever

  • Internal error when person doing people search has matching name as search query

    I'm trying to find a solution for peculiar problem in our SP 2010 people search. We get this error  Internal server error exception: System.Threading.ThreadAbortException: Thread was being aborted.    at Microsoft.SharePoint.WebPartPages.DataFormWebP

  • Non destuctive editing

    When i have altered an original image in LR and save it to a different folder, the image opened from the original folder comes into LR with the change shown to the one saved in a different folder. is this normal? should i have made a virtual copy bef

  • Facebook Like Social Widget

    Hi, I'm having trouble with the 'Facebook like button' social widget after uploading my site. When you click on the button, the pop up keeps displaying a 404 error. An example of this can be seen here: http://www.ianmcneil.net/tpg/preview/linden-cour

  • [Solved] Systemd: how to disable core dumps on application crashes?

    Hi, I'm sorry if this is the wrong forum, but I just couldn't find a place that's really suitable for such a question. I have a really annoying problem with systemd: I'm developing software, which sometimes crashes. And when it crashes, I sometimes w