Question about tagging bounce verification

Hi all,
I'm a really new beginner with IronPort and more generally with antispam. So you will maybe find my questions a little bit newbee but I need it for understand and improve myself :wink:
First I have a C150 with AsyncOS 5.5.1-014.
I use tagging outgoing mails and bounce verification and for some domains, they failed for delivery.
For example: I send a mail at [email protected] from my adress: [email protected], the client has an antispam which send a mail back to my personnal adress [email protected] with the mail adress [email protected]
What it seems to happen is that [email protected] send a mail to my tagged address (something like prvs=myadress=[email protected]) and is then rejected by the RAT. As I rejected his mail and their antispam wait for a correct answer from their mail, they dropped my mail.
So my questions are:
- When I send a send a mail (which is tagged) to an address [email protected], if another mail adress send me a mail to my tagged address, is this mail considered as a spam ?
- Does the ironport wait that only mail addresses I have send my tagged mail in return with that tag? And to dig a little more, if I received a mail to my tagged mail address I send to another people, will this mail untag and then checked by RAT ?
Thanks by advance and best regards,
Arcastor :)

Hi all,
AsyncOS 5.5.1-014.
I use tagging outgoing mails and bounce verification and for some domains, they failed for delivery.
For example: I send a mail at [email protected] from my adress: [email protected], the client has an antispam which send a mail back to my personnal adress [email protected] with the mail adress [email protected]
What it seems to happen is that [email protected] send a mail to my tagged address (something like prvs=myadress=[email protected]) and is then rejected by the RAT. As I rejected his mail and their antispam wait for a correct answer from their mail, they dropped my mail.
Thanks by advance and best regards,
Arcastor :)
Two important points here:
1) It looks like what's going on is the toto.com domain is using Sender Address Verification (SAV). When the IronPort attempts to send email, they make a connection back and see if the sender is a valid recipient for the sending domain. They should be using a null (<>) sender, which will trigger the Bounce Verification code on the IronPort.
2) You are running AsyncOS 5.5.1-014. There is a bug with Bounce Verification that was recently fixed You should upgrade: either to 5.5.1-019, or go to the very latest, 6.1.0-306.
-karl

Similar Messages

  • IWeb SEO tool question about tagging images: what do others do?

    I've been reading everybody's posts and started to use iWeb SEO Tool to add meta tags to all my pages. (since google couldn't verify my site with html) The page titles, keywords, and meta tags are relatively easy to decide on, but I don't know what to do about some of the images.
    If it's a definite photo of a subject, no problem, but what about those pesky shapeimage5_link0 and shapeimage_1.jpg files?
    What do i name them ? line 1, thicker line 2, arrow? (I'm being flippant here, ... really).
    I've just been calling them 'stained glass link' or 'next arrow link' but that's pretty dull.
    In some cases (for the lines) i've titled them with the name of the webpage again, but with several lines on the page, that tag is repeated, a lot. (And i read that if you repeat the same tag too frequently, your site is banned from google, which i don't want.)
    I thought they didn't matter too much but when i did a search from one of the search engines, the description of the web page actually included shapeimage5a.png or some such thing, and i don't want that to appear in people's searches !!
    So what do other people do about these? How do you name them?
    Thanks for the suggestions
    Elizabeth

    You'll get instructions about the HTML verification file here....
    http://www.iwebformusicians.com/SearchEngines/Tools.html
    The main thing with images is TEXT. Put a text caption for each. If possible, don't use the iWeb Photos and Albums templates.
    Put a text description at the top of every page with keywords in both the title and text. The spiders will pick up on this.
    If you don't do this, at least put a fairly long title tag in. Make sure the first few words are descriptive of the page so that they are relevant to a page bookmark.
    If the search engines are picking up on stuff like "shapeimage5_link0" it means that you haven't supplied any unique and relevant text!

  • Question about 'tags' in ecommerce templates?

    I have a client with an Ecommerce section. Now the System email for the invoice is setup fine however the client wanted to add a 'thank you' block of text to the email. No problem. Then they came back and wanted to have the 'thank you' block of text only email to the customer when they order something BUT have the invoice printable without the 'thank you' block of text so they can keep a hardcopy of the invoice. So I created a quick page template to have the 'thank you' text in and add this to the System Email Inovice which worked fine BUT now the client wants to have the recipients name in the email that goes out and it doesn't seem to work with the page template I have created. Is this possible to add a tag in a page template that will pick up a customers name when added to the system email?

    I have the everything as you mention in one invoice. The invoice I build is landscape and sweet. This is just tweaking. If it is two pages for him in the CRM if someone prints theirs from the email they will still have the same problem so only having it in the email is like saying "Hey, dont care if it is messy for you dude, as long as I am sweet" which you dont want.
    Client should get the nicest one
    In terms of the other invoice option if they use drop shipping and set their staff as the drop shipper in the CRM then you can use that email to send out an invoice with different layout as you need it to show or not show things.
    Page templates should not be used on emails as lots of modules and layouts will not work. Specific template designed for email will be needed but tags only render in their relevent layouts.
    Want to always please your clients I know but never take what their asking for and just go with it, for me, this task all seems not worth any time, not anything out of it, not worth the hassle and a good tidy up of the invoice itself from the sounds of it is all you need.

  • Question about tags

    this is my code
    <script language="JavaScript" type="text/javascript">
    <!--
    htmldb_delete_message='"DELETE_CONFIRM_MSG"';
    //-->
    </script>
    <script language="JavaScript" type="text/javascript">
    <!--
    function getHistology(filter, listName)
    alert(listName.id);
    var xml = null;
    var list = document.getElementById(listName);
    var listvalue = list.value;
    var get = new htmldb_Get(null,$v('pFlowId'), 'APPLICATION_PROCESS=GET_HISTOLOGY',27);
    get.add('AI_HISTOLOGY_RECORD', filter.value);
    ret = get.get('XML');
    alert(ret);
    if(ret)
      var s = ret.getElementsByTagName("select");
      if(s){
       var o = ret.getElementsByTagName("option");
       var oCount = o.length;
       list.options.length = 0;
       for(var i = 0; i < oCount; i++){
        var l_Opt_Xml = o;
    appendToSelect(list, l_Opt_Xml.getAttribute('value'), l_Opt_Xml.firstChild.nodeValue);
    list.value = listvalue;
    if (list.selectedIndex == -1)
    list.selectedIndex = 0;
    get = null;
    function appendToSelect(pSelect, pValue, pContent) {
    var l_Opt = document.createElement("option");
    l_Opt.value = pValue;
    if(document.all){
    pSelect.options.add(l_Opt);
    l_Opt.innerText = pContent;
    } else {
    l_Opt.appendChild(document.createTextNode(pContent));
    pSelect.appendChild(l_Opt);
    //-->
    </script> Edited by: user1700785 on Oct 1, 2009 4:05 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    It is documentation forum, why you have just posted a script and haven't asked any question? Please post only "documentation related question" in this forum, or visit other forums from http://forums.oracle.com

  • Question about Tagging Photos

    I know that you can Tag photos INSIDE iphoto, but is there a way (program or method or function) that allows you to tag photos OUTSIDE of iphoto (for example, if the photo is on my computer in some random folder) and then later on import into iPhoto and have the tags be recognized by iphoto?
    I would appreciate any advice or help.
    Thanks.

    What kind of Tag are you speaking of?
    Any tag that is in the correct EXIF or IPTC field will import to iPhoto - not all fields can be accessed in iPhoto
    LN

  • I have a question about my Apple ID which is my email

    The email on which my Apple ID is associated with has been hacked
    therefore i have made a new email address which i have changed all my online
    accounts to. However im afraid to do so with Itunes im worried that i will
    loose the apps and movies and song etc that i have purchased or if they will send an
    email confirmation to the hacked email account.
    can someone please help me as to what i should do and how i should do it?
    Thank you

    Hi Aysha84,
    As long as this email that is your Apple ID does not end in mac.com, me.com or icloud.com you can change it as well as associate it with a different email address. That way you will retain control of all content from the Apple ID. See this article for how to change the Apple ID -
    Change your Apple ID - Apple Support
    Be sure to follow through with the steps in this article after you have changed the Apple ID -
    Apple ID: What to do after you change your Apple ID - Apple Support
    You may be worried about the security of your Apple ID. If so you may want to use two-step verification to increase security -
    Frequently asked questions about two-step verification for Apple ID - Apple Support
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • HT5312 a question about the  security-related emails

    Excuse me.ive forgot my security questions and answers.and what was worse my yahoo e-mail(which is the security-related emails ) has been closed few days ago.could u help me?

    The Three Best Alternatives for Security Questions and Rescue Mail
         1.  Send Apple an email request at: Apple - Support - iTunes Store - Contact Us.
         2.  Call Apple Support in your country: Customer Service: Contact Apple support.
         3.  Rescue email address and how to reset Apple ID security questions.
    A substitute for using the security questions is to use 2-step verification:
    Two-step verification FAQ Get answers to frequently asked questions about two-step verification for Apple ID.

  • Question about the Documentat​ion Tags for Source Code

    Hello,
    I have a question about CVI's automatic source code documentation. My problem is that is seems like you need to write all documentation for a specific tag on one line. If you don't, a line break will be inserted when the documentation is displayed. Suppose I want to write a large amount of documentation for the function itself, using the HIFN tag. If I don't want linebreaks to be forced in the documentation, I need to write all this documentation on one single line, which kinda messes up my code. If I split the documentation over several HIFN tags, the documentation displayed to the user might look messed up because of all the linebreaks. Is there any escape character I can put at the end of a line, allowing me to split the documentation of several HIFN lines without forcing linebreaks in the documentation?
    Thanks!
    GEMIDIS - Innovating Display Technology
    HQ Ghent, Belgium

    This information is certainly useful. Note, however, that it can also be found in the documentation
    Tag
    Description
    /// HIFN help text
    Specifies the help text for the function. Use multiple /// HIFN tags to display help text for the function on separate lines. To separate help text with an empty line, use /// HIFN on a line by itself. You also can use HTML tags, but you must enclose the tags in <HTML><BODY></BODY></HTML> tags.
    Example
    /// HIFN SampleFunction returns the value of a control.
    int SampleFunction (int controlID, ctrlType controlType, char label[], double *value)
         SomeAction;

  • Question about sony NFC tags

    Hi every body,
    I have a little question about the NT1 smart tags of sony.
    I installed other app from google play to NFC tags in my phone.
    I installed it, because the smart tag app of sony, don't have the action to turn on or turn off the GPS by NFC tag.
    When I used with other app, and I written on the blue smart tag, I mark to became the blue smart tag to read only.
    So, now I can't to write on him, and the phone is not recognazied the blue smart tag ( all other smarts tags is OK, because I didn't used them ).
    When I scan the blue smart tag, the phone show a message: "unknown type tag".
    Am I can cancelled it and became it back? that's mean that the phone is recognaized it and I can to write on it?
    Or, is it one way, and I can't used with the blue smart tag again?
    Thank you.

    you can do a factory reset or repair your phone with SUS
    Update Service (SUS)
    http://www.sonymobile.com/gb/tools/update-service/
    http://www-support-downloads.sonymobile.com/Software%20Downloads/Update_Service_Setup-2.11.12.5.exe
    Alternatives on How to backup Xperias
    http://talk.sonymobile.com/thread/36355
    Don't forget to mark the Correct Answers & Helpful Answers
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • Question about Id3-tags and song managem

    Hello, I am getting ready to buy a Zen Touch 20GB in a couple of weeks and I have a few questions about the management software.
    (Correct me if I am wrong about something)
    ) Are songs organized into groups by Genre instead of just folders like on the Ipod?
    2) Are Id3-tags used instead of filename for identification?
    3) What parts of the tag are needed besides title and artist?
    4) Which version of tags does the Zen Touch recognize: Version or Version 2?
    5) If I edit my tags using an external program such as Id3-TagIT, will the tags carry over to the Creative software and to the player?
    Thanks a lot for your help. I want to make sure I have my music collection in order before I get my Zen Touch.

    euph_jay wrote:Ok, so lets say I have all my music in folders right now seperated into different categories on my hard dri've. Some folders denote the artist, some the album, and some a genre. Example: Folder: Chicago Contents: Chicago .mp3 files Folder: Techno Contents: various Techno artist's songs What is the best way of organizing my folder system, so that the transition will be easy to the player?
    Folders are pretty much irrelevant. What the software will do is look at the *tags* in the files and then use these to build the player's library.
    Will imbedded folders work on the player? (like Techno->Crystal Method->Cystal Method .mp3's)
    Again the player has no concept of folders, although if you set Techno as a Genre tag you will be able to view via this in the Music Library.
    Or, am I misunderstanding how music is stored into the mp3 player. Instead of storing music in a "folder like" system (like the Chicago folder or Techno folder), does it store all the songs individually on the device? Then you have to sort it by artist, album, or genre?
    Using your example, in the Music Library you have essentially three categories: Album, Artist, and Genre. So under Album you would see "Vegas" (the Crystal Method's album), under Artist you would see "The Crystal Method", and under Genre you would see "Techno" (and then either the album or artist under this... I forget which it is offhand).
    Make sense?

  • Hi, I have quick question about use of USEBEAN tag in SP2. When I specify a scope of SESSION for the java bean, it does not keep the values that I set for variable in the bean persistent.Thanks,Sonny

     

    Make sure that your bean is implementing the serializable interface and that
    you are accessing the bean from the session with the same name.
    Bryan
    "Sandeep Suri" <[email protected]> wrote in message
    news:[email protected]..
    Hi, I have quick question about use of USEBEAN tag in SP2. When I
    specify a scope of SESSION for the java bean, it does not keep the
    values that I set for variable in the bean persistent.Thanks,Sonny
    Try our New Web Based Forum at http://softwareforum.sun.com
    Includes Access to our Product Knowledge Base!

  • Answers of the questions about verification ID? I can't remembered!

    I can't remember the answers of questions about verification Id and now I can't down more music.

     
    Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities

  • DKIM and bounce verification

    Hi all, as I understand DKIM uses from: field to create the hash that later will be used for recipient. Bounce Verification inserts a tag inside from: field too. So I supposed Ironport first insert the Bounce Verification tag and then create DKIM hash, because if you create DKIM first then  Bounce Verification modifies the message and the hash will not be valid.
    Is this correct?
    thank you
    Regards
    Samuel

    Greetings,
    BV does not modify the FROM header, only modify field. So it doesn't impact DKIM signing. The DKIM signature is inserted in the email as a DKIM signature header and the email is transmitted. The receiving MTA extracts the DKIM signature from the header and the claimed sending domain (via the Sender: or From: header) from the email. The public key is retrieved from the claimed signing domain which is extracted from DomainKeys or DKIM signature header fields.
    Hope answered your question.
    Cheers,
    Viquar Ahmed
    Customer Support Engineer

  • Just installed iOS6, questions about "iMessage" and other things...

    I've been a satisfied iOS4 user since I bought my iPhone4, but I was forced to install iOS6 tonight in order to download a "free" app. I found a few new icons on the screen along with about 200 percent more "Settings" I'd like to ask some questions about. I'm sure a few of these could be answered by doing a frantic and thorough search through weeks of posts but I'm a little short on time right now.
    First, what exactly is iMessage? Looking at the page for it, I can't see any difference between it and regular text messages. The info page says its to avoid charges, but between my data plan and not being charged for text I don't see where theres any other benefit. The one person I text with the most recently asked me why I had not installed iMessage yet, and didn't have an answer when I asked him why I should. I guess he just wanted to see text replies in blue instead of green.
    In a related bit, flipping through Settings>Messages>Send & Receive I find a "2 addresses" section, with my phone number in there as well as my email under "You can be reached by iMessage at:" and "Start new conversations from:". What good does it do iMessages to have my email address? Does the Mail app handle text as well as email addresses? That seems to be the only explanation, and also very odd to think I'd be trying to text through my Mail app.
    Second, looking through the Settings>Mail I see now that I have an icloud email address as well as the mac.com address I've been desperately hanging on to for the past 10 years, and the me.com address they've been trying to force me into since those came out. (I was happy to see I could delete the me.com address from the phone. I wish I could delete it from the universe.)
    I wasn't even aware there was a such thing as icloud.com addresses. When did this happen? What is it used for?
    Third, under that icloud Setting I see a long list of apps with buttons labeled "Off" under it. What are those for? Under the Mac.com settings I see switches for "Mail" and "Notes", with Mail on and Notes off. The Notes app (which I haven't used since my old iPhone 3) still opens, regardless of this setting.
    Fourth, I now have an item called "Facetime" under my Settings. It is off, but underneath it says "Your phone number and/or email address will be shared with people you call". I understand caller ID normally sends caller number info to the receiver, but why would someone need my email address if I call them?
    Fifth, I now have a "Music" setting, at the bottom of which I see a "Home Sharing" item, which when clicked brings up my AppleID and asks me if I want to Sign Out or Cancel. What is Home Sharing? Its also at the bottom of the "Video" settings.
    Sixth, now I have Twitter and Facebook settings? For what? I don't have accounts with either of those companies. So why have settings, especially since it asks me to create accounts and download apps for those companies right in the Settings?
    Seventh, there is a camera icon on the unlock screen. Touching it causes the screen to bounce up about a quarter inch, almost but not quite revealing something behind it. I should probably just quit asking about this stuff already, but I'll take the bait - what is this now?
    Finally, what is the Notification Center used for?
    If I got a text under iOS4, it would put an alert on the Unlock screen. Scrolling through this huge list of things under the Notification settings I'm really blown away by all the apps set up to yell at me. I can see having an alert for a text message but Game Center? What the heck is that, and why is it set up to hit me with a "Badge App Icon" (whatever that is) when I get alerts from "Everyone". Similarly, the phone is set to alert me to something called a "Photostream Alert"? What is this? Why is there a Phone section for the Notification Center? So they can put a Notice on my screen to tell me the phone is ringing? Holy cow! The phone is set to send me alerts from the "Weather Widget". So if I miss the fact its raining there will be a message on my screen to let me know? Whats next - a buzzer to tell me I'm listening to music?
    There's a lot more, like what would I need Passbook for when I have the actual movie tickets, gate boarding passes, coupons, etc in my hands, but we'll leave that for another time. Many thanks to all who can offer some answers to my questions above.

    Hey Taantumus!
    Here is an article that will provide some guidance on this question:
    Apple ID: Changing your password
    http://support.apple.com/kb/ht5624
    The next time you use an Apple feature or service that uses Apple ID, you'll be asked to sign in with your new Apple ID password.
    Thanks for coming to the Apple Support Communities!
    Regards,
    Braden

  • Some questions about importing HTML files

    Hi, folks
    Let's suppose we want to import a pack of HTML files formatted in HTML5 wit's it's CSS into a double-oriented folio. A couple or three questions about that, please:
    1. Is there a limit for a reasonable quantity of HTML files I can import into a folio? I mean.. 100 would be way too much, for instance?
    2. These HTML files could be navigated and referenced from inside TOC-pages made in InDesign,right? (navto://..., I gues?)
    2. Will it be possible, by means of HTML adaptative design techniques, to treat both orientations (vertical and horizontal) as different viewports or screen sizes so that the design adapts for instance the column width with its CSS?
    3. That said, will the InDesign final app. respect that adaptative CSS rules?
    I am asking this because we are looking for a way to inject big quantities of content with a very similar design into our application in a really fast and automatizable way and I have the suspicion* that importing HTML5 preformated CSS files could be the a very good and simple alternative to importing XML into InDesign templates as we start out content as tagged almost-html files.
    Thanks a lot
    Gustavo Sánchez (Posting from Madrid)

    I assume you are asking about using HTML articles.
    1. There is no limit beyond simply keeping things reasonable.
    2. Yes. Just use navto://articlename
    3. Yes. I've used min-width of 768 and max width of 1024 to control it.
    4. InDesign does not enter into any of this with the exception of using the folio builder panel. Everything else is done in Dreamweaver or whatever program you decide to use for the article.
    If you want to restrict the HTML articles to one orientation or the other, use the _h and _v suffixes.
    Bob

Maybe you are looking for

  • Functunality of save view in BW report iview

    Dear all, When SAP BW Query report iview is called in portal, u will get Save view, Bookmark, variableSreen...etc buttons.. When u click on saveview button...it will ask u to save as a view of that report with specific name. My question is, where it

  • How can I migrate my adobe creative suite to a new computer?

    I recently bought a new computer, and I am getting rid of the old one. However, I want to be able to transfer my Adobe Creative Suite CS5 to my new computer. Can anyone give me directions on how to do this? Any help would be greatly appreciated.

  • RFC Lookup - Best Approach To Parse Returned Tables

    Hi Everyone, We are doing some RFC Lookups at a header node that are returning tables for all of the items (for performance reasons).  I am trying to figure out what the best way to extract the values from the table, which is most of time has more th

  • AMD High Definition Graphics Driver_TR does not want to install

    I have a HP Pavilion 17 Notebook, Product number: G4X63UA#ABA, with windows 8.1 64 bit that has a AMD Radeon HD 7640G Graphics card, but the graphics driver update from HP (mentioned in the subject line) does not want to install?

  • KPro for SAP LSO

    Hi, We are in the process of setting up SAP LSO with content server as KPRO.Please help in integarting Kpro with LSO. Regards, Avinash.