Rules don't work

I am receiving lots of spam where the content of the message is an attachment. Each attachment is named differently, however, the content of the attachment always begin with the same words regarding new stock hitting the market. The attachments are ".gif". I have tried to tell "Rules" to look at all "content" and find those words and if found "delete" the e-mail. Nothing works. The auto function does nothing and manual does nothing. Below is the way each attachment begins. Any suggestions or advice on how to use Apple script??
Best New Stock For Year 2006
EXPLOSIVE PICK FOR OUR MEMBERS
TRADING ALERT!!!

Bruce, the mail you've forwarded me confirms what I told you before. There is no real text there, it's all just a pattern of bits that Mail cannot do anything with. It's like a FAX, you would need an OCR application to extract any text from it. Actually, I'm pretty sure the spammer did it on purpose precisely to avoid the junk filters.
Save the attachment and open it with Preview or any other application capable of viewing it, and you'll see that you are unable to select any text, simply because there is no text there. It's just an image that your brain decodes as text, but the computer cannot do the same without the aid of OCR software.
BTW, I have no idea why the first attempt to send you an email failed. Maybe we should start yet another "cannot send" or "mail I send does not arrive at the destination" thread about that...

Similar Messages

  • Exchange 2013: Inbox rules don't work on Journal Mailbox

    Hello,
    I've Exchange 2013 server with 2 databases:
    * First database has all user mailboxes & is journaled to second database
    * Second database has only 1 mailbox: Journal which collects all messages send / received  from / to first database.
    I made Inbox Rules on Journal Mailbox  to delete unnecessary messages e.g. :
    * HealthMailbox messages with Subject: Client submission probe
    * [email protected] messages with Subject: Inbound proxy probe.
    I noticed that these rules don't work. Why ?
    best regards Janusz Such

    Hi,
    How do you create these Inbox Rules on journal Mailbox? Please share the detailed rule content here and we can check whether the rule was created correctly or not.
    Instead of journaling all mailboxes residing on a mailbox database, I suggest we can configure journal rules to match your organization's needs by journaling individual recipients or members of distribution groups. For more information about
    journal rules, please refer to:
    https://technet.microsoft.com/en-us/library/jj651670%28v=exchg.150%29.aspx?f=255&MSPPError=-2147217396
    Regards,
    Winnie Liang
    TechNet Community Support

  • Interface names get swapped, but udev rules don't work

    I'm using the (apparently nightmarish) broadcom_wl module.
    This:
    https://wiki.archlinux.org/index.php/Br … every_time
    and this:
    https://wiki.archlinux.org/index.php/Co … es_varying
    don't work.  the 10-network.rules file I create is just completely ignored.
    Any ideas?
    Arch is my distro of choice for my desktop, but it is turning out to be an enormous PITA on my laptop.

    hmmm,
    NAME
               The name, a network interface should be renamed to. Or as a
               temporary workaraound, the name a device node should be named.
               Usually the kernel provides the defined node name, or even creates
               and removes the node before udev even receives any event. Changing
               the node name from the kernel's default creates inconsistencies and
               is not supported. If the kernel and NAME specify different names,
               an error will be logged. Udev is only expected to handle device
               node permissions and to create additional symlinks, not to change
               kernel-provided device node names. Instead of renaming a device
               node, SYMLINK should be used. Symlink names must never conflict
               with device node names, it will result in unpredictable behavior.
    try creating symlinks instead.

  • RV180W - Access Rules Don't Work

    Hi,
    We have a RV180W and the Access Rules will not work.  I'm trying to block HTTP and HTTPS services for a specific workstation on our LAN, but the access rules don't seem to be working.  I've also tried blocking different services as well as ANY service, but it's not working.  I've tried rebooting the router after adjusting settings; I've tried adjusting services from the Port Forwarding menu first; and a couple weeks ago, I upgraded the firmware to version 1.0.2.6 and repeated all the previous steps.  Nothing seems to be working.  So far the only solution I could come up with is to block the workstation's MAC address altogether, but I don't want that because I still need it to hit the internet for other services.
    Thank you,
    Ryan

    These are the Access Rules I've tried (firmware v1.0.2.6):
    Outbound:
    Inbound along with the auto added Port Forwarding setting:

  • Mail Rules don't work in Mavericks

    It seems with the update to 10.9 Mavericks Mail rules no longer work. My email address was harvested by spamers and I have been using rules to weed throught the 100's of emails that I receive each day.
    Russian Brides, Vigra, Learn a new language get moved into the trash when delievered. Now nothing happens.
    I just tried to write a new rule and when I clicked the Prefs pannel I got the spinning cursor. After waiting for some time I did a force quit only to find that Mail was not responding.
    Anyone have any ideas? I did not see any major changes with Mail and Mavericks so I'm not sure why it's been effected.
    MD

    You might condider using an Applescript with Mail Rules.
    Here's one that I use (Use whitelist to not move to spam):
    (Just edit to your junk or whitelist)
    Note:  The Applescripit must be saved to: ~/Library/Application Scripts/com.apple.mail/
    The rule:
    The AppleScript:
    using terms from application "Mail"
              on perform mail action with messages theMessages
                        tell application "Mail"
                                  repeat with theMessage in theMessages
                                            set theSender to (sender of theMessage)
                                            set theReplyto to (reply to of theMessage)
                                            set theSubject to (subject of theMessage)
                                            set theHeader to (all headers of theMessage)
                                            set theContent to (source of theMessage as string)
                                            set theAccount to (account of mailbox of theMessage)
                                            if my blacklist(theSender, theReplyto, theSubject, theHeader, theContent) ¬
                                                      and not my whitelist(theSender, theHeader) then
                                                      my moveToJunkFolder(theMessage, theAccount)
                                            end if
                                  end repeat
                        end tell
              end perform mail action with messages
    end using terms from
    on blacklist(f, r, s, h, c)
              if h contains "X-YahooFilteredBulk" or ¬
                        h contains "Received-SPF: fail" or ¬
                        h contains "Received-SPF: softfail" or ¬
                        h contains "Received-SPF: error" or ¬
                        h contains "Received-SPF: permerror" or ¬
                        h contains "Received-SPF: temperror" or ¬
                        h contains "streamsendbouncer@" or ¬
                        s contains "[Bulk]" or ¬
                        f contains "Vigra.candianmeds.com" or ¬
                        f contains "[email protected]" or ¬
                        f contains ".cz" or ¬
                        r contains ".ma" then
                        return true
         end if
    end blacklist
    on whitelist(f, h)
              if f contains "aicpa" or ¬
              f contains "eWeek.com" or ¬
                        h contains "from macbook-air.local" then
                        return true
              else
                        return false
              end if
    end whitelist
    on moveToJunkFolder(m, a)
              tell application "Mail"
                        try
                                  set the read status of m to true
                                  set the junk mail status of m to true
                                  set theAccount to (account of mailbox of m)
                                  set mailbox of m to (mailbox "Junk" of a) --  Move to "Junk"
                        end try
              end tell
    end moveToJunkFolder

  • Udev rules don't work

    I am on my laptop, where I am trying to write some udev rules.
    Firstly, as a test I tried to make a symlink when connecting my ext hd.
    $ udevadm info /dev/sdb
    E: ID_PART_TABLE_UUID=ea04843c-526e-45bf-9d45-beba1b180285
    $ cat /etc/udev/rules.d/61-rules.rules
    ENV{ID_PART_TABLE}=="ea04843c-526e-45bf-9d45-beba1b180285" NAME="lilalum"
    And well, nothing happens (there is no lilalum in /dev) when I plug in my ext hd.
    Secondly, my low bat rule doesn't work.
    $ cat /etc/udev/rules.d/99-lowbat.rules
    SUBSYSTEM=="power_supply", ATTR{status}=="Discharging", ATTR{capacity}=="10", RUN+="/usr/bin/systemctl suspend"
    SUBSYSTEM=="power_supply", ATTR{status}=="Discharging", ATTR{capacity}=="9", RUN+="/usr/bin/systemctl suspend"
    SUBSYSTEM=="power_supply", ATTR{status}=="Discharging", ATTR{capacity}=="8", RUN+="/usr/bin/systemctl suspend"
    It just doesn't do anything when the battery gets that low, and no the battery did not skip both 10, 9 and 8 percent.
    Last edited by Ploppz (2014-05-03 12:41:02)

    Ah... thanks, it works now!
    One more small issue... I tried writing a test to detect when the charger of my laptop gets plugged in or out, I put it in 61-rules.rules
    SUBSYSTEM=="power_supply", RUN+="/usr/bin/touch /home/ploppz/charger"
    The battery does send signals to udev:
    $ udevadm monitor
    monitor will print the received events for:
    UDEV - the event which udev sends out after rule processing
    KERNEL - the kernel uevent
    # Plugging out:
    KERNEL[944.333548] change /devices/platform/ACPI0003:00/power_supply/AC (power_supply)
    UDEV [944.340228] change /devices/platform/ACPI0003:00/power_supply/AC (power_supply)
    KERNEL[944.426599] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    UDEV [944.428599] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    KERNEL[944.470830] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    UDEV [944.472781] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    # Plugging in:
    KERNEL[950.317263] change /devices/platform/ACPI0003:00/power_supply/AC (power_supply)
    KERNEL[950.331752] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    UDEV [950.332023] change /devices/platform/ACPI0003:00/power_supply/AC (power_supply)
    KERNEL[950.332576] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    UDEV [950.333609] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    UDEV [950.334891] change /devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0 (power_supply)
    I also tried putting it in 99-lowbat.rules, stilll no luck. I'm also wondering whether udev reads all the rules every time an event happens, or if it caches them such that when I write a rule, I'll have to either wait a bit or do some action to update the rules cache?

  • AI CS6 Ruler don't work

    Dear Madam or Sir,
     I work with AI CS6. Now the ruler does't work at all.
    If I pull the ruler on the page it disappears. or if it is there I cant mark it and put it aside.
    I look forward to hearing from you!
    Morteza Ariana

    You need to provide system information. In any case, this question is best asked in teh AI forum.
    Mylenium

  • Rules don't work in email

    Hello,
    I have applied rules in Mail, to delete mail that contains certain words, but they only work when I manually click apply rules.  Shouldn't it happen automatically?  I want  junk mail to be deleted as soon as it arrives.  Don't want to view it at all.  Just want it to go away.  This is with AOL mail, no .me mail.  Any help would be greatly appreciated.
    thanks,
    donald

    Hello,
    I have applied rules in Mail, to delete mail that contains certain words, but they only work when I manually click apply rules.  Shouldn't it happen automatically?  I want  junk mail to be deleted as soon as it arrives.  Don't want to view it at all.  Just want it to go away.  This is with AOL mail, no .me mail.  Any help would be greatly appreciated.
    thanks,
    donald

  • Hardware Rules don't work - failed to return a task

    I am trying to make some post-imaging changes and though I'd give the Hardware Rules a go ( which I haven't used for a long, long time .. not in ZCM at least ). I am not getting an error similar to :
    http://forums.novell.com/novell/nove...rror-91-a.html
    Except for mine doesn't have an error code, it just says "Error: Failed to return a task" when I check for work to do manually ( F9 when running img on the device ). This device has been factory imaged using the image supplied with Zenworks agent installed and zac fsg -d was done before hutdown. I am not sure if that matters or not as I belive h/w rules are supposed to apply to both registered and non-registered devices ?
    Anyway, here is a pbserv.log:
    Mon Jan 9 18:49:12 2012 -- [LicenseCheck] Checking Imaging License
    Mon Jan 9 18:49:12 2012 -- [RNT] Server GUID is: 96cbb868c5389a6370fa25cae0053449
    Mon Jan 9 18:49:12 2012 -- [RNT] Imaging License Info: 1
    Mon Jan 9 18:49:12 2012 -- [LC] open connection, 10.129.50.10
    Mon Jan 9 18:49:12 2012 -- [PCV] received PROXY_CMD_VERSION
    Mon Jan 9 18:49:12 2012 -- [HC] versions: 10, 10, 103305
    Mon Jan 9 18:49:12 2012 -- [PCV] done PROXY_CMD_VERSION
    Mon Jan 9 18:49:12 2012 -- [PCGNT] received PROXY_CMD_GET_NEXT_STEP
    Mon Jan 9 18:49:12 2012 -- [RNT] WS GUID = "db6f55286cb56c4f8b4ce1267104188e"
    Mon Jan 9 18:49:12 2012 -- [RNT] GWIL = 5176
    Mon Jan 9 18:49:12 2012 -- [RNT] Received Workstation Information:
    Dumping Workstation Information:
    WorkstationInformation.signature ............ ZENWSINF
    WorkstationInformation.version .............. 6
    WorkstationInformation.length ............... 5176
    WorkstationInformation.Chipset .............. Intel(R) Corporation 1204 Mhz
    WorkstationInformation.Video ................ Intel Corporation Unknown device 0x0046
    WorkstationInformation.Network .............. Intel Corporation Unknown device 0x0082
    WorkstationInformation.Soundcard ............ Intel Corporation Unknown device 0x3B56
    WorkstationInformation.Diskcontroller ....... IDE
    WorkstationInformation.MACAddress............ 20:6a:8a:64:ff:8a
    WorkstationInformation.ipAddress ............ 10.129.50.10
    WorkstationInformation.BiosAssetTag ......... Base Board Asset Tag
    WorkstationInformation.BiosSerialnumber ..... 14704211
    WorkstationInformation.BiosVersion .......... INSYDE V1.24 05/06/2011
    WorkstationInformation.SystemManufacturer ... Acer
    WorkstationInformation.ProductName .......... Aspire One 753
    WorkstationInformation.HarddriveSizeMB ...... 305245
    WorkstationInformation.RAM .................. 4096
    WorkstationInformation.BootMedia ............ 3
    WorkstationInformation.zenPartitionType...... 0x00
    Mon Jan 9 18:49:12 2012 -- [RNT] PSI size = 164
    Mon Jan 9 18:49:12 2012 -- [RNT] Received PrebootState Information:
    Dumping PrebootStateInformation:
    PrebootStateInformation.signature ............ ZENPBINF
    Structure Version ... 3
    Structure Length ... 164
    Version ............... 0
    Flags ................. 0
    State ................. 4
    Tree ID ................
    Job ID ................
    Task ID ................ 0
    Task Completion Code ... 0
    Mon Jan 9 18:49:12 2012 -- [RNT] Error String:Err Fie ortr ak
    Mon Jan 9 18:49:12 2012 -- [RNT] Server GUID is: 96cbb868c5389a6370fa25cae0053449
    Mon Jan 9 18:49:12 2012 -- [RNT] Error SGNT: 2003
    Mon Jan 9 18:49:12 2012 -- [RNT] GNT returned 2003
    Mon Jan 9 18:49:12 2012 -- [RNT] Sending PrebootState Information:
    Dumping PrebootStateInformation:
    PrebootStateInformation.signature ............ ZENPBINF
    Structure Version ... 3
    Structure Length ... 164
    Version ............... 0
    Flags ................. 0
    State ................. 4
    Tree ID ................
    Job ID ................
    Task ID ................ 0
    Task Completion Code ... 0
    Mon Jan 9 18:49:12 2012 -- [PCGNT] done PROXY_CMD_GET_NEXT_STEP
    Mon Jan 9 18:49:12 2012 -- [PCC] received PROXY_CMD_CLOSE
    Mon Jan 9 18:49:12 2012 -- [PCC] done PROXY_CMD_CLOSE
    Mon Jan 9 18:49:12 2012 -- [LC] close connection, 10.129.50.10
    Mon Jan 9 18:49:12 2012 -- [ECC] CS
    Now I wonder what that Error SGNT might mean ..
    Originally I wanted to push just a linked application bundle ( a batch script to run ) but eventually tried adding our standard base image to no avail.
    When I try to apply the same imaging bundle to a different notebook ( using a different h/w rule ) - clearly using the right ProductName or BiosSerialnumber - it simply returns "No work to do". Which is better than failing to return a task but still .. doesn't do any work, really. Here it is:
    Mon Jan 9 19:00:37 2012 -- [LicenseCheck] Checking Imaging License
    Mon Jan 9 19:00:37 2012 -- [RNT] Server GUID is: 96cbb868c5389a6370fa25cae0053449
    Mon Jan 9 19:00:37 2012 -- [RNT] Imaging License Info: 1
    Mon Jan 9 19:00:37 2012 -- [LC] open connection, 10.129.50.11
    Mon Jan 9 19:00:37 2012 -- [PCV] received PROXY_CMD_VERSION
    Mon Jan 9 19:00:37 2012 -- [HC] versions: 10, 10, 103305
    Mon Jan 9 19:00:37 2012 -- [PCV] done PROXY_CMD_VERSION
    Mon Jan 9 19:00:37 2012 -- [PCGNT] received PROXY_CMD_GET_NEXT_STEP
    Mon Jan 9 19:00:37 2012 -- [RNT] WS GUID = "44398adf69915a4c8de5a15589ffd679"
    Mon Jan 9 19:00:37 2012 -- [RNT] GWIL = 5176
    Mon Jan 9 19:00:37 2012 -- [RNT] Received Workstation Information:
    Dumping Workstation Information:
    WorkstationInformation.signature ............ ZENWSINF
    WorkstationInformation.version .............. 6
    WorkstationInformation.length ............... 5176
    WorkstationInformation.Chipset .............. Intel(R) Corporation Pentium M processor 1200 Mhz
    WorkstationInformation.Video ................ Intel Corporation Unknown device 0x2A43
    WorkstationInformation.Network .............. Intel Corporation Unknown device 0x422C
    WorkstationInformation.Soundcard ............ Intel Corporation HD Audio Controller
    WorkstationInformation.Diskcontroller ....... IDE
    WorkstationInformation.MACAddress............ 60:eb:69:35:5d:2d
    WorkstationInformation.ipAddress ............ 10.129.50.11
    WorkstationInformation.BiosAssetTag ......... Base Board Asset Tag
    WorkstationInformation.BiosSerialnumber ..... 10102849
    WorkstationInformation.BiosVersion .......... INSYDE v1.3310 03/25/2010
    WorkstationInformation.SystemManufacturer ... Acer
    WorkstationInformation.ProductName .......... AO752
    WorkstationInformation.HarddriveSizeMB ...... 238475
    WorkstationInformation.RAM .................. 2048
    WorkstationInformation.BootMedia ............ 3
    WorkstationInformation.zenPartitionType...... 0x00
    Mon Jan 9 19:00:37 2012 -- [RNT] PSI size = 164
    Mon Jan 9 19:00:37 2012 -- [RNT] Received PrebootState Information:
    Dumping PrebootStateInformation:
    PrebootStateInformation.signature ............ ZENPBINF
    Structure Version ... 3
    Structure Length ... 164
    Version ............... 0
    Flags ................. 0
    State ................. 0
    Tree ID ................ c7ebeac25e25b763ad08e6c18bd67b44
    Job ID ................
    Task ID ................ 0
    Task Completion Code ... 0
    Mon Jan 9 19:00:37 2012 -- [RNT] Error String:N okt o
    Mon Jan 9 19:00:37 2012 -- [RNT] Server GUID is: 96cbb868c5389a6370fa25cae0053449
    Mon Jan 9 19:00:37 2012 -- [RNT] GNT returned 0
    Mon Jan 9 19:00:37 2012 -- [RNT] Sending PrebootState Information:
    Dumping PrebootStateInformation:
    PrebootStateInformation.signature ............ ZENPBINF
    Structure Version ... 3
    Structure Length ... 164
    Version ............... 0
    Flags ................. 0
    State ................. 0
    Tree ID ................ c7ebeac25e25b763ad08e6c18bd67b44
    Job ID ................
    Task ID ................ 0
    Task Completion Code ... 0
    Mon Jan 9 19:00:37 2012 -- [RNT] XML Size = 85
    Mon Jan 9 19:00:37 2012 -- [RNT] XML is = <ZENworks-Imaging><Type>Reboot-Command</Type><ErrCode>0</ErrCode></ZENworks-Imaging>
    Mon Jan 9 19:00:37 2012 -- [PCGNT] done PROXY_CMD_GET_NEXT_STEP
    Mon Jan 9 19:00:37 2012 -- [PCC] received PROXY_CMD_CLOSE
    Mon Jan 9 19:00:37 2012 -- [PCC] done PROXY_CMD_CLOSE
    Mon Jan 9 19:00:37 2012 -- [LC] close connection, 10.129.50.11
    Mon Jan 9 19:00:37 2012 -- [ECC] CS
    Am I missing something here ?

    Try Clearing the ZISD on the device and see if it follows the rules.
    If so, we can go from there..............
    On 1/9/2012 2:16 AM, atrofimov wrote:
    >
    > I am trying to make some post-imaging changes and though I'd give the
    > Hardware Rules a go ( which I haven't used for a long, long time .. not
    > in ZCM at least ). I am not getting an error similar to :
    >
    > http://forums.novell.com/novell/nove...rror-91-a.html
    >
    > Except for mine doesn't have an error code, it just says "Error: Failed
    > to return a task" when I check for work to do manually ( F9 when running
    > img on the device ). This device has been factory imaged using the image
    > supplied with Zenworks agent installed and zac fsg -d was done before
    > hutdown. I am not sure if that matters or not as I belive h/w rules are
    > supposed to apply to both registered and non-registered devices ?
    >
    > Anyway, here is a pbserv.log:
    >> Mon Jan 9 18:49:12 2012 -- [LicenseCheck] Checking Imaging License
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Server GUID is:
    >> 96cbb868c5389a6370fa25cae0053449
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Imaging License Info: 1
    >> Mon Jan 9 18:49:12 2012 -- [LC] open connection, 10.129.50.10
    >> Mon Jan 9 18:49:12 2012 -- [PCV] received PROXY_CMD_VERSION
    >> Mon Jan 9 18:49:12 2012 -- [HC] versions: 10, 10, 103305
    >> Mon Jan 9 18:49:12 2012 -- [PCV] done PROXY_CMD_VERSION
    >> Mon Jan 9 18:49:12 2012 -- [PCGNT] received PROXY_CMD_GET_NEXT_STEP
    >> Mon Jan 9 18:49:12 2012 -- [RNT] WS GUID =
    >> "db6f55286cb56c4f8b4ce1267104188e"
    >> Mon Jan 9 18:49:12 2012 -- [RNT] GWIL = 5176
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Received Workstation Information:
    >> Dumping Workstation Information:
    >> WorkstationInformation.signature ............ ZENWSINF
    >> WorkstationInformation.version .............. 6
    >> WorkstationInformation.length ............... 5176
    >> WorkstationInformation.Chipset .............. Intel(R) Corporation
    >> 1204 Mhz
    >> WorkstationInformation.Video ................ Intel Corporation
    >> Unknown device 0x0046
    >> WorkstationInformation.Network .............. Intel Corporation
    >> Unknown device 0x0082
    >> WorkstationInformation.Soundcard ............ Intel Corporation
    >> Unknown device 0x3B56
    >> WorkstationInformation.Diskcontroller ....... IDE
    >> WorkstationInformation.MACAddress............ 20:6a:8a:64:ff:8a
    >> WorkstationInformation.ipAddress ............ 10.129.50.10
    >> WorkstationInformation.BiosAssetTag ......... Base Board Asset Tag
    >> WorkstationInformation.BiosSerialnumber ..... 14704211
    >> WorkstationInformation.BiosVersion .......... INSYDE V1.24
    >> 05/06/2011
    >> WorkstationInformation.SystemManufacturer ... Acer
    >> WorkstationInformation.ProductName .......... Aspire One 753
    >> WorkstationInformation.HarddriveSizeMB ...... 305245
    >> WorkstationInformation.RAM .................. 4096
    >> WorkstationInformation.BootMedia ............ 3
    >> WorkstationInformation.zenPartitionType...... 0x00
    >> Mon Jan 9 18:49:12 2012 -- [RNT] PSI size = 164
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Received PrebootState Information:
    >> Dumping PrebootStateInformation:
    >> PrebootStateInformation.signature ............ ZENPBINF
    >> Structure Version ... 3
    >> Structure Length ... 164
    >> Version ............... 0
    >> Flags ................. 0
    >> State ................. 4
    >> Tree ID ................
    >> Job ID ................
    >> Task ID ................ 0
    >> Task Completion Code ... 0
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Error String:Err Fie ortr ak
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Server GUID is:
    >> 96cbb868c5389a6370fa25cae0053449
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Error SGNT: 2003
    >> Mon Jan 9 18:49:12 2012 -- [RNT] GNT returned 2003
    >> Mon Jan 9 18:49:12 2012 -- [RNT] Sending PrebootState Information:
    >> Dumping PrebootStateInformation:
    >> PrebootStateInformation.signature ............ ZENPBINF
    >> Structure Version ... 3
    >> Structure Length ... 164
    >> Version ............... 0
    >> Flags ................. 0
    >> State ................. 4
    >> Tree ID ................
    >> Job ID ................
    >> Task ID ................ 0
    >> Task Completion Code ... 0
    >> Mon Jan 9 18:49:12 2012 -- [PCGNT] done PROXY_CMD_GET_NEXT_STEP
    >> Mon Jan 9 18:49:12 2012 -- [PCC] received PROXY_CMD_CLOSE
    >> Mon Jan 9 18:49:12 2012 -- [PCC] done PROXY_CMD_CLOSE
    >> Mon Jan 9 18:49:12 2012 -- [LC] close connection, 10.129.50.10
    >> Mon Jan 9 18:49:12 2012 -- [ECC] CS
    > Now I wonder what that Error SGNT might mean ..
    >
    > Originally I wanted to push just a linked application bundle ( a batch
    > script to run ) but eventually tried adding our standard base image to
    > no avail.
    >
    > When I try to apply the same imaging bundle to a different notebook (
    > using a different h/w rule ) - clearly using the right ProductName or
    > BiosSerialnumber - it simply returns "No work to do". Which is better
    > than failing to return a task but still .. doesn't do any work, really.
    > Here it is:
    >> Mon Jan 9 19:00:37 2012 -- [LicenseCheck] Checking Imaging License
    >> Mon Jan 9 19:00:37 2012 -- [RNT] Server GUID is:
    >> 96cbb868c5389a6370fa25cae0053449
    >> Mon Jan 9 19:00:37 2012 -- [RNT] Imaging License Info: 1
    >> Mon Jan 9 19:00:37 2012 -- [LC] open connection, 10.129.50.11
    >> Mon Jan 9 19:00:37 2012 -- [PCV] received PROXY_CMD_VERSION
    >> Mon Jan 9 19:00:37 2012 -- [HC] versions: 10, 10, 103305
    >> Mon Jan 9 19:00:37 2012 -- [PCV] done PROXY_CMD_VERSION
    >> Mon Jan 9 19:00:37 2012 -- [PCGNT] received PROXY_CMD_GET_NEXT_STEP
    >> Mon Jan 9 19:00:37 2012 -- [RNT] WS GUID =
    >> "44398adf69915a4c8de5a15589ffd679"
    >> Mon Jan 9 19:00:37 2012 -- [RNT] GWIL = 5176
    >> Mon Jan 9 19:00:37 2012 -- [RNT] Received Workstation Information:
    >> Dumping Workstation Information:
    >> WorkstationInformation.signature ............ ZENWSINF
    >> WorkstationInformation.version .............. 6
    >> WorkstationInformation.length ............... 5176
    >> WorkstationInformation.Chipset .............. Intel(R) Corporation
    >> Pentium M processor 1200 Mhz
    >> WorkstationInformation.Video ................ Intel Corporation
    >> Unknown device 0x2A43
    >> WorkstationInformation.Network .............. Intel Corporation
    >> Unknown device 0x422C
    >> WorkstationInformation.Soundcard ............ Intel Corporation HD
    >> Audio Controller
    >> WorkstationInformation.Diskcontroller ....... IDE
    >> WorkstationInformation.MACAddress............ 60:eb:69:35:5d:2d
    >> WorkstationInformation.ipAddress ............ 10.129.50.11
    >> WorkstationInformation.BiosAssetTag ......... Base Board Asset Tag
    >> WorkstationInformation.BiosSerialnumber ..... 10102849
    >> WorkstationInformation.BiosVersion .......... INSYDE v1.3310
    >> 03/25/2010
    >> WorkstationInformation.SystemManufacturer ... Acer
    >> WorkstationInformation.ProductName .......... AO752
    >> WorkstationInformation.HarddriveSizeMB ...... 238475
    >> WorkstationInformation.RAM .................. 2048
    >> WorkstationInformation.BootMedia ............ 3
    >> WorkstationInformation.zenPartitionType...... 0x00
    >> Mon Jan 9 19:00:37 2012 -- [RNT] PSI size = 164
    >> Mon Jan 9 19:00:37 2012 -- [RNT] Received PrebootState Information:
    >> Dumping PrebootStateInformation:
    >> PrebootStateInformation.signature ............ ZENPBINF
    >> Structure Version ... 3
    >> Structure Length ... 164
    >> Version ............... 0
    >> Flags ................. 0
    >> State ................. 0
    >> Tree ID ................ c7ebeac25e25b763ad08e6c18bd67b44
    >> Job ID ................
    >> Task ID ................ 0
    >> Task Completion Code ... 0
    >> Mon Jan 9 19:00:37 2012 -- [RNT] Error String:N okt o
    >> Mon Jan 9 19:00:37 2012 -- [RNT] Server GUID is:
    >> 96cbb868c5389a6370fa25cae0053449
    >> Mon Jan 9 19:00:37 2012 -- [RNT] GNT returned 0
    >> Mon Jan 9 19:00:37 2012 -- [RNT] Sending PrebootState Information:
    >> Dumping PrebootStateInformation:
    >> PrebootStateInformation.signature ............ ZENPBINF
    >> Structure Version ... 3
    >> Structure Length ... 164
    >> Version ............... 0
    >> Flags ................. 0
    >> State ................. 0
    >> Tree ID ................ c7ebeac25e25b763ad08e6c18bd67b44
    >> Job ID ................
    >> Task ID ................ 0
    >> Task Completion Code ... 0
    >> Mon Jan 9 19:00:37 2012 -- [RNT] XML Size = 85
    >> Mon Jan 9 19:00:37 2012 -- [RNT] XML is =
    >> <ZENworks-Imaging><Type>Reboot-Command</Type><ErrCode>0</ErrCode></ZENworks-Imaging>
    >> Mon Jan 9 19:00:37 2012 -- [PCGNT] done PROXY_CMD_GET_NEXT_STEP
    >> Mon Jan 9 19:00:37 2012 -- [PCC] received PROXY_CMD_CLOSE
    >> Mon Jan 9 19:00:37 2012 -- [PCC] done PROXY_CMD_CLOSE
    >> Mon Jan 9 19:00:37 2012 -- [LC] close connection, 10.129.50.11
    >> Mon Jan 9 19:00:37 2012 -- [ECC] CS
    >>
    >
    > Am I missing something here ?
    >
    >
    Craig Wilson - MCNE, MCSE, CCNA
    Novell Knowledge Partner
    Novell does not officially monitor these forums.
    Suggestions/Opinions/Statements made by me are solely my own.
    These thoughts may not be shared by either Novell or any rational human.

  • Applescript Rules Don't Work in 10.8 Mail.app

    Very simple thing Im trying to do here. Set up a rules to run a simple growl notification script when a new mail with a vertain subject arrives. This script works perfectly file in the editor and runs file outside of the mail.app.
    Set to to run as a rule using the run actionscript option in mail.app - but it will never run.
    Why would this script run fine outside of mail.app, but not as an actionscript rule?
    tell application "System Events"
        set isRunning to (count of (every process whose bundle identifier is "com.Growl.GrowlHelperApp")) > 0
    end tell
    if isRunning then
        tell application id "com.Growl.GrowlHelperApp"
            -- Make a list of all the notification types
            -- that this script will ever send:
            set the allNotificationsList to ¬
                {"Payment Received"}
            -- Make a list of the notifications
            -- that will be enabled by default.     
            -- Those not enabled by default can be enabled later
            -- in the 'Applications' tab of the growl prefpane.
            set the enabledNotificationsList to ¬
                {"Payment Received"}
            -- Register our script with growl.
            -- You can optionally (as here) set a default icon
            -- for this script's notifications.
            register as application ¬
                "PayPal Alert" all notifications allNotificationsList ¬
                default notifications enabledNotificationsList ¬
            --       Send a Notification...
            notify with name ¬
                "Payment Received" title ¬
                "Payment Received" description ¬
                "You have received a payment." application name "PayPal Alert"
        end tell
    end if

    system preferences>keyboard>keyboard shortcuts doesn't give you anything?

  • Some Mail rules don't work properly

    So I have had an email rule in Tiger for the last n months that matched account, To: Subject: and message content (account==, To:==, Subject: ==, Message Contents contains) and the rule processing is supposed to be Mark as read, move to folder x, change color to green, reply with message, stop processing rules.
    What actually happens is move to folder x, mark as read, move to folder x, change color to green, and reply, but only with the original message. The "Reply with Text" is ignored and is not included.
    Is this a known issue? I have deleted the rule and re-created it, with the same effect.

    So I have had an email rule in Tiger for the last n months that matched account, To: Subject: and message content (account==, To:==, Subject: ==, Message Contents contains) and the rule processing is supposed to be Mark as read, move to folder x, change color to green, reply with message, stop processing rules.
    What actually happens is move to folder x, mark as read, move to folder x, change color to green, and reply, but only with the original message. The "Reply with Text" is ignored and is not included.
    Is this a known issue? I have deleted the rule and re-created it, with the same effect.

  • Rules don't work/mail doesn't recognize rules

    I have created a rule that says if sender not in my address book, not in previous recipients forward to junk. Nothing is forwarded to junk. I have removed message sorting.plist and renamed message sorting.plist backup to message sorting.plist. That did nothing to answer the problem. If rules are corrupted what can I do?

    These settings are already included in the standard/default Junk Mail rule.
    Did you add this to the existing Junk Mail rule at Mail > Preferences > Junk Mail > Advanced or to Rules at Mail > Preferences > Rules?
    Is Junk Mail set to Automatic?

  • When I add a rule to mail preferences, they don't work at all

    When I add a rule to mail preferences, they don't work at all

    One thing to remember is that mail rules are only executed on incoming email.  To run a rule against existing email, Mail > Message > Apply rule.
    Captfred

  • Syncing rules in Mail (OSX) don't work...

    I can't sync rules with iCloud. When I activate Documents and Data in iCloud, the rules configured in Mail are deleted. If I create a new rule, when re-start Mail, the rule dissapear.
    If turn off Documents and Data, all work perfect. I have a backup of SyncedRules.plist (Library->Mail->V2->MailData) to restore.
    I had tried a lot of "fixes", but nothing work.
    I have another issues with Documents and Data betwen iOS and Mac. Syncing of data with apps like Tweetbot, IAwriter, iWork... don't work. I'm sure something in my iCloud account is wrong, but I don't know how fix it.
    Are there anyone from Apple that can help me?.
    Thanks.
    Regards.

    Not as part of my immediate issue, but (as I did explain above) 1) this thread deals with rules/sigs vanishing, and 2) that seems to happen a lot, to people who sync AND people who don't, 3) it seems that this problem is sometimes attributed to iCloud syncing when that is not the problem and 4) I was hoping there might be some related Mail issue (besides just iCloud) that *might* help explain things. I aslo said I thought it was a long shot, but....any port in a storm. No offense intended, but it seems that my long shot didn't turn up any useful info.
    That said, since i DO have a heckuva lot of rules set up, and having them reside eslewhere might be useful. Is there a way to move rules already in existence to iCloud? If I make changes locally, will they get picked up by iCloud or overwriten? If not, then iCloud won't help me at present.....

  • EMET 5.0 Pinning Rule doesn´t work

    I have installed EMET 5.0 on my Windows 7 pro system. I have configured a pinning rule for my internetbank exactly the same way as i did with EMET 4.1. But when I apply a different certificate
    from my bank's to test the rule nothing happens - no warnings when I log in to the internetbank. Except once!. With EMET 4.1 the warnings never failed to show.
    The new EMET 5.0 blocking function doesn't work at all (which is very disappointing, as this was the main reason why I upgraded to EMET 5.0).
    Anyone who knows how to do to make this work?
    I tried to enclose screenshots of my current configuration, but got the error message:
    "Body text cannot contain images or links until we are able to verify your account."
    But i don't understand how to verify my account...sorry...

    This morning I:
    1. Logged in as administrator on Windows 8 (Swedish version).
    2. Installed and configured EMET 5.0 with recommended settings and added pinning/blocking rule for my internetbank. Imported certificate different from that used by my internetbank.
    3. Logged out.
    4. Logged in as standard user.
    5. Launched Internet Explorer in desktop mode (didn't run as administrator).
    6. Tried to log in to my internetbank – pinning rule blocked login, nice!.
    As you stated before, pinning rule does not work as one would like on Windows 7 (I have windows 7 professional English version).
    Have not yet tried to use EMET logged in as administrator on Windows 7 but why bother? I agree with you, not a good idea to log in as administrator and then use internet…
    I will use Windows 8 for my internet banking until this is resolved.
    Thank you!

Maybe you are looking for

  • Regarding secondary index

    how and when we create secondary indexes and what are the advantages and disadvantages of secondary indexes?

  • Password to wake from sleep

    For security reasons, I like to require that my computer asks for a password to wake from sleep. i do this on my OS X mac without a problem. I need to do the same on another mac that runs OS 9.1. Is there a way to do this? Thanks! Tim

  • Using Laptop screen as second monitor?

    Hey gusy, I have a Mac Pro and a MacBook Pro.  With the Mac Pro I have just the one screen - used to have two, but now just the one as I rarely need it.  However, for a job I'm doing at the moment, it would be handy to have the use of two screens.  D

  • Unable to open itunes installation package on XP - see post for error mesge

    Downloaded iTunes Installation package to C:. When trying to run package windows error message states: "Installation package could not be opened. Verify package exists and you can access it, or contact application vendor to verify thisis a valid inst

  • How create a container for diagram ERD (Oracle Design)

    Hi, I need help it will create an ERD but pops up a screen asking me to choose "Select the deafult container for this diagram." And the choice is all in white registering wanted one but do not know where to register. Can anyone help me .. It is urgen