Outbound message getting 554 rejecting banned content from Postini

559

This is not coming from your end. It is on the recipients end and they are blocking it. If it was your end then postini would have -psmtp at the end of the error. That is why adding it to the approved list did nothing.

You have to see about them adding the sender to the approved list.

I know this is an old question but it still comes up on Google so I figured I would answer it.

Share:
559

Related videos on Youtube

Malek python
Author by

Malek python

Updated on September 18, 2022

Comments

  • Malek python
    Malek python over 1 year

    I am trying to make a download operation that has a progress bar that automatically progresses.

    When I run this code the progress bar works fine but when I click with the mouse in the form the program stops working.

    import sys
    from PyQt4.QtGui import *
    from PyQt4.QtCore import *
    import urllib
    
    app = QApplication(sys.argv)
    app.setStyle('Cleanlooks')
    label = QLabel()
    progressx = QProgressBar(label)
    
    url = "http://l3cdn.riotgames.com/ShellInstaller/EUNE/LeagueofLegends_EUNE_Installer_9_15_2014.exe"
    name = url.split('/')[-1]
    def report(count, blockSize, totalSize):
            global percent
            percent = int(count*blockSize*100/totalSize)
    
            sys.stdout.write("\r%d%%" % percent + ' complete')
            progressx.setValue(percent)
            label.show()
    
    urllib.urlretrieve(url, name, reporthook=report)
    sys.exit(app.exec_())
    

    This is the progress bar:

    Broken progress bar

    • Coding Gorilla
      Coding Gorilla over 12 years
      What is the "Reporting MTA" on the bounce?
    • Jason
      Jason over 12 years
      @CodingGorilla: The returned emails doesn't have the Reporting-MTA header/field.
    • mailq
      mailq over 12 years
      That's true, but it is stated in the body and not in the header.
    • Coding Gorilla
      Coding Gorilla over 12 years
      Maybe you can edit your question and include the bounce message, that will give us more information to help you
  • syntonym
    syntonym over 8 years
    Please add the Traceback to your post, or if you don't get one, a more detailed explanation what happens if you try to run your program.
  • Malek python
    Malek python over 8 years
    ah thx a lot your are the best :)