Applescript & Mail: fail reading from list

I'm trying to write a script to mark duplicates in a mailbox by creating a list of existing message IDs and mark the ones already in the list. While it does create the correct list, duplicate IDs won't be detected. Is there a bug or is it my script?
try
tell application "Mail"
set msg_count to count of message in message viewer 1
if msg_count = 0 then
display dialog "Please select the folders you want to scan for duplicates." with icon 1 buttons {"Okay"} default button 1
else
set all_msg to (every message in message viewer 1)
set id_list to {}
set dup_count to 0
repeat with this_msg in all_msg
try
set msg_id to (content of every header of this_msg whose name is "Message-ID")
on error
set msg_id to ""
set background color of this_msg to blue
end try
if msg_id is in id_list then --problem here?
set background color of this_msg to gray
set dup_count to dup_count + 1
else if msg_id is not "" then
set the end of id_list to msg_id
end if
set msg_count to msg_count - 1
if msg_count mod 100 = 0 and msg_count > 0 then say (msg_count as string) & " messages remaining"
end repeat
--choose from list id_list
if dup_count is 0 then
say "done. no duplicates found"
else
say "done. " & dup_count & " duplicates found."
end if
end if
end tell
on error the error_message number the error_number
-- don't display error message if the user canceled a dialog within the [try] and [on error] lines above
if the error_number is not -128 then
set the error_text to "Error: " & the error_number & ". " & the error_message
display dialog the error_text buttons {"Cancel"} default button 1
else
error number -128
end if
end try

Well, I was thinking maybe the message id is, by default, set as list item instead of string and that might be the reason why it can't find it in the list though the list contains the id. So I just edited it and it works!
I forgot to mention that the script was taken from <a href=http://homepage.mac.com/barryw/">Barry Wainwright's "Remove Duplicates" for Entourage.
Here's the edited blocks:
<pre>repeat with this_msg in all_msg
try
set msg_id to (content of every header ¬
of this_msg whose name is "Message-ID") ¬
as string -- problem was here
if msg_id is "" then set background color ¬
of this_msg to blue
end try
if msg_id is in id_list then
set background color of this_msg to gray
set flagged status of this_msg to ¬
true -- for easy deletion
set dup_count to dup_count + 1
else if msg_id is not "" then
set the end of id_list to msg_id
end if
set msg_count to msg_count - 1
if msg_count mod 100 = 0 and msg_count > 0 ¬
then say (msg_count as string) ¬
& " messages remaining"
end repeat
if dup_count is 0 then
say "done. no duplicates found"
else if dup_count is 1 then
say "done. 1 duplicate found"
-- sometimes you only find one
else
say "done. " & dup_count & " duplicates found."
end if
</pre>

Similar Messages

  • Failed read from Extech sound meter

    I am attempting to communicate with an Extech 407764 sound level meter via RS232. The manual contains the instruction set on the last page (see here under User Manual). I also have a stand-alone software application they sent with the device, but I want to create my own. I am able to write to the device and change setting on it, for example. However, I cannot read from the device. I attempted to debug my problem using portmon, and there are some differences between my program and the stand-alone one, but I'm not sure what might be causing the problem, or how to change it. Below are two portmon logs: one from their program, and one from mine. I have portmon set to output HEX instead of ASCII. The noticable differences to me are the FLUSH after the WRITE request, and the XOnLimit/XOffLimit settings, but maybe those are red herrings. Also, I don't know how to change that from within LabVIEW. There seems to never be any bytes available at the port to read. I'm hoping someone can point me the right direction. I have also attached my simple VI which is a modification of the Serial Read/Write example with a loop added. I'm writing a space each time (Hex 20) because their program appears to be doing it as well.
    Attachments:
    portmon_good.txt ‏5 KB
    portmon_bad.txt ‏5 KB
    mySerialReadWrite.vi ‏34 KB

    Thanks for the idea. I tried changing to XON/XOFF, and that didn't seem to help. I went through all 4 different flow control options and none of them appeared to fix the issue. These changes don't seem to appear in port monitoring logs. Is there an other way to determine the flow control being implemented? Or even to determine if that might be my issue?
    I also noticed that the XOnLimit and XOffLimit for the stand-alone software seems to be 10 (bytes?), but I cannot seem to set a value that low using the SetBufferSize VI under VISA; they seem to only go as low as 16.
    I'm not sure if again I am pursuing a red herring with this or not. I appreciate the advice. 

  • How to add anchor tag dynamically on infopath (OOTB task form of workflow .xsn) by jquery -dynamically as i did by below script on newform.aspx where I will read Help title and URL value from list

    on newform.aspx just above the top of cancel button I want to put 1 hyperlink "Help"
    but I want to do this by script/jquery by reading my configuration list where 1 column is TITLE and other is- URL
    Configuration List has 2 columns Title and URLValue
    Title                                    UrlValue
    HelpNewPage                    
    http://url1
    HelpEditPage                      http://url2
    so script should read Title and display "Help"--->1st part on NewForm.aspx/EditForm
    Script should read UrlValue column and on click of help-(display link) the respective url should be open in new window.-->second part
    Please let me know reference code for adding anchor tag dynamically by reading from list
    Help/Reference 
    http://www.sharepointhillbilly.com/Lists/Posts/Post.aspx?ID=5
    I can see hyperlink near cancel button-
    //This block is just placing help link near cancel button- 
    $(document).ready(function() {
        GetHelpLinkFromConfigList();
    var HelpLinkhtml ='<a href="#" text="Help">Help</a>';
    var position =$("input[value='Cancel']").parent("td").addClass('ms-separator').append(HelpLinkhtml);
    var HelpLinkhtml ='<a href="#" text="Help" onclick="GetHelpLinkFromConfigList();">Help</a>'; 
    var position =$("input[value='Cancel']").parent("td").addClass('ms-separator').append(HelpLinkhtml);
    var HelpLinkimageButton ='<IMG SRC="../../Style Library/Help.bmp" style="width:35px;"/>'; 
    var position1 =$("input[value='Cancel']").parent("td").addClass('ms-separator').append(HelpLinkimageButton );
    //Rest script
    function GetHelpLinkFromConfigList()
     //The Web Service method we are calling, to read list items we use 'GetListItems'
     var method = "GetListItems";
     //The display name of the list we are reading data from
     var list = "configurationList";
     //We need to identify the fields we want to return. In this instance, we want the Title,Value fields
     //from the Configuration List. You can see here that we are using the internal field names.
     var fieldsToRead = "<ViewFields>"+"<FieldRef Name='Title' />"+"<FieldRef Name='Value' />"+"</ViewFields>";
     //comment
     var query = "<Query>" +
                            "<Where>" +
                                "<Neq>" +
                                    "<FieldRef Name='Title'/><Value Type='Text'>Help</Value>"
    +
                                "</Neq>" +
                            "</Where>" +
                            "<OrderBy>" +
                                "<FieldRef Name='Title'/>" +
                            "</OrderBy>" +
                        "</Query>";
     $().SPServices(
     operation: method,
        async: false,
        listName: list,
        CAMLViewFields: fieldsToRead,
        CAMLQuery: query,
        completefunc: function (xData, Status) {
        $(xData.responseXML).SPFilterNode("z:row").each(function() {
        var displayname = ($(this).attr("ows_Title"));
        var UrlValue = ($(this).attr("ows_Value")).split(",")[0];
        AddRowToSharepointTable(displayname,UrlValue)
    function AddRowToSharepointTable(displayname,UrlValue)
        $("#NDRTable").append("<tr align='Middle'>" +
                                    "<td><a href='" +UrlValue+ "'>+displayname+</a></td>"
    +
                                   "</tr>");
    <table id="NDRTable"></table>
    sudhanshu sharma Do good and cast it into river :)

    Hi,
    From your description, you want to add a help link(read data from other list) into new form page.
    The following code for your reference:
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    ExecuteOrDelayUntilScriptLoaded(AddHelpLink, "sp.js");
    function AddHelpLink() {
    var context = new SP.ClientContext.get_current();
    var list= context.get_web().get_lists().getByTitle("configurationList");
    var camlQuery= new SP.CamlQuery();
    camlQuery.set_viewXml("<View><Query><Where><Eq><FieldRef Name='Title'/><Value Type='Text'>Help</Value></Eq></Where></Query></View>");
    this.listItems = list.getItems(camlQuery);
    context.load(this.listItems,'Include(Title,URL)');
    context.executeQueryAsync(function(){
    var ListEnumerator = listItems.getEnumerator();
    while(ListEnumerator.moveNext())
    var currentItem = ListEnumerator.get_current();
    var title=currentItem.get_item("Title");
    var url=currentItem.get_item("URL").get_url();
    var HelpLinkhtml ='<a href="'+url+'">'+title+'</a>';
    $("input[value='Cancel']").parent("td").addClass('ms-separator').append(HelpLinkhtml);
    },function(sender,args){
    alert(args.get_message());
    </script>
    Result:
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Has anyone got a script to read a list of email addresses from a Mail message and put them into a group in Contacts?

    Has anyone got a script to read a list of email addresses from a Mail message header and put them into a group in Contacts?

    Now Tony, I know you can't hear my tone on a forum post but I was not complaining, simply stating facts . This change brought several people in my office to a grinding halt in a long established workflow that is really rather simple (and I thought was already assumed from the original post above ):
    1) Select a set of records in FileMaker Pro 12 and export only their e-mail addresses as a CSV file.
    2) Open that CSV file in Excel.
    3) Copy the column of e-mail address.
    4) paste into the appropriate recipient field in Mail.
    5) Send
    If I were to complain it would be about Apple's typically opaque approach to updates. There is no granular explanation of why changes were made or even "what" changes were made.
    Complaining is futile since Apple is Apple and is unlikely to change, but sometimes it is cathartic to "shout into the void" .
    I had thought about doing something with a formula in Excel and your suggestion was simple and helpful. Again, however, it is only a workaround for a long established helpful behavior that Apple has inexplicably broken/removed in Mavericks Mail.
    I, and the other posters here, would love to have the capability back rather than have to add previously unneeded steps to our workflows.
    Ultimately we may add scripting steps to the FileMaker side to export the address lists with commas inserted already if Apple ends up having permanently removed this feature.

  • Mail fails to recognize names from address book

    My information in address book shows as follows
    Name: J Doe
    Email address: [email protected]
    If someone has me in their address book as Doe John and sends an email to me at my email address ([email protected]), Mail.app does not recognize me and asks me if I want to 'Add to Address Book'.
    The same happens if a sender has a minor change in the Name (such as even a dot in the name) of any recipient, regardless of the fact that I have the correct name in the address book. Mail fails to recognize the recipient even though the email address is identical, and will ask me if I want to 'Add to Address Book'.
    One would expect Mail to use just the email address and recognize the contact as already being in the Address Book.
    I just spent a good three hours investigating this.
    There have been numerous posts discussing this both here and elsewhere over the years but I'm surprised that there has not been a solution. Here are some examples..
    1. Mail can't recognize my contact email address
    2. Address Book editing
    3. Mail doesn't show names from the Address Book
    In the 3rd example above, Golden Shoes suggests that this is the same for every email client, but I must disagree because Postbox and Thunderbird does display the information correctly from the Address Book, infact Postbox does this impressively I must add.
    It would be great if this was fixable in Mail. Is there a solution for this?

    I followed your suggestions.
    Both AB and AB within Mail were empty of contacts after I deleted my iCloud contacts from the mac. I even did a reboot just in case. After this, I rechecked contacts and all my contacts appeared again both in AB and AB within Mail.
    I quit and reopened Mail to find that the problem still persisted. I know and rechecked that these contacts are not present in my previous recipients list so it is definitely not that database which is preventing this.
    The funny thing (maybe not funny since this is really bugging me) is that Mail on iOS (iPhone) works just fine. The Mail on iPhone seems to query the sender/recipient email address, accurately realizes that the contact is already in the AB, and shows as such. The same email in Mail.app on the mac asks me if I want to add the contact to AB.
    Is this really a unique situation? Is everyone else not experiencing the same?
    If you ask someone to change your name within their address book and send an email to you, does Mail on the mac recognize you regardless of what that sender named you as? Or does it ask you to add to AB?

  • Retrieve mails lost for routing fail in distribution list

    hi
    I read mails from external provider with a pop connector and write them in exchange 2010.
    (message tracking: EventID : RECEIVE   Source: SMTP)
    I wrote a wrong internal distribution list, so I got no mail delivered to the list
    (message tracking: EventID : FAIL   Source: ROUTING)
    anyway, exchange gave me a MessageID for every lost mail.
    tracking goes back 30 days ('cause or retention period?)
    question is (you can imagine):
    - are the mails somewhere in server ?
    - as and administrator, can I retrieve them (by EMC, powershell, etc...)
    Thanks
    Roberto

    Hi Ed
    it's not in this way.
    As i said in fist post, mails was "received" by exchange
    in tracking tool i can see them as
    EventID : RECEIVE   Source: SMTP , with the WRONG address, that caused the routing to fail.
    on the SAME line in tracking tool, i anyway got a MessageID, so i imagine they are "somewhere" IN exchange...
    Roberto 

  • Copying Music failed. The disk could not be read from or written to.

    I just added a server to my home network. It's called "DELLSEVER" and is networked via TCP/IP on a Windows Network. I can copy files to and from it no problem. I created a shared folder on the server with public read/write access and no password called "Music".
    I wanted to move my iTunes music folder (~110GB) to the server's Music folder.
    I followed the instruction found on this forum and went into iTunes(6.0.4.2) preferences -> Advenced -> Itunes Music folder location -> clicked Change -> selected the directory from the available list -> clicked ok.
    Under "iTunes Music folder location" it now says "\\DELLSERVER\Music\iTunes", and clicked ok to close the preferences.
    I then clicked Advanced -> Consolidate Library -> Consolidate.
    I then get the error "Copying Music failed. The disk could not be read from or written to."
    I then tried to manually copy my library from dragging the folded from my PC to the server. That worked fine, but I can't get iTunes to use the server's copy of the music, it keeps going back to my PC's copy.
    Please help. I've only got about 30 Meg left on my PC's drive with iTunes and need to relocate my music to the server's drives.
    And if it matters, I am Administrator on both my PC and the server.
    I also tried de-authorizing my PC just in case. Made no difference.

    Thanks Katrina. Mapping the folder to a drive letter allowed iTunes to start copying the music across.
    Unfortuntely iTunes didn't notice that I manually copied the files across earlier, so it's overwriting them. I'm about two hours into the transfer with about another hour to go, but it looks like it's going to work.
      Windows XP Pro  

  • Whether I'm in Mail or downloading from YouTube or the internet, lately I'm getting a message "Plug-in Failed".  What can I do?

    Whether I'm in Mail or downloading from YouTube or the internet, lately I'm getting a message "Plug-in Failed".  What can I do?

    Click here for information.
    (104852)

  • RH7 Error: Failed to read from log... Failed to generate WebHelp Pro

    Installed RH9 trial on Windows XP PC. Then, generated an existing project using RH7 to a new C: drive directory location on the PC using the same name. Renamed the project files in that C:drive directory to a test name and opened the project's .xpj file in RH9.  It converted cleanly. 
    Now, when I go to generate the RH7 original project from the original server directory, I receive:  
    Error: Failed to read from log (file name) .log.... Internal error encountered,  Failed to generate WebHelp Pro.
    Does the log file keep track of the previous generation (time stamp,etc), since this RH7 generation has a skip in it for the one generated to the C:drive?  I've compared the log files from each run (.txt files) and don't see a difference. I even copied the log file from the C:drive run to the Server directory. No luck.  Any ideas?

    Hi John,
    Thanks for the prompt response.  I am trying to evaluate RH9 / RH Server 9.
    When I generate RH7 projects, I’ve always put the server (RH7 Server) directory reference in the ‘Output Folder and Start Page’ field.  This directory reference is where the compiled output ends up right? In my case, it’s in that field as:
    PBSrobohelp\D$\RoboHelp <file:///
    PBSrobohelp\D$\RoboHelp>  Web Files\PBS Unit Processes Manual.  I’m not aware of a C:Drive local copy of the files. Doesn’t it go out to the server output for the .log file in question?
    For the test, I took an existing project in RH7 and replaced this server reference with a C:Drive local hard drive directory reference and ran the output to it.  Then I went to the C:Drive directory and changed the project name, because there doesn’t appear to be a way to do a ‘save as’ on a project – RH7 wants to keep that name badly.  I then, shutdown RH7 and started RH9.  I opened the .xpj file from the new test project copy. It recognized that it was from an older release and it converted the test copy to RH9.  It converted cleanly with about 2 inconsequential document warnings but did not create a TOC.  I looked it over and saved it in RH9 – it was already my test name.  
    The original RH7 project opens fine in RH7 and the Test RH9 project opens fine in RH9. So I think I have a good test copy.  It’s just that when I point the RH7 original to the Server Output folder (which has its files) it gets the error on generation.  
    We are evaluating RH Server 9 but I haven’t attempted to publish anything to it yet. I’ve stayed  purely on my desktop.  
    Hope this clears it up.
    Jim
    Jim Dages
    Business Professional Technician III
    University of Colorado, Payroll & Benefit Services
    1800 Grant St, Suite 400
    Denver, CO  80203
    t. 303-860-4230
    f. 303-860-4299
       Please consider the environment before printing this e-mail.
    CONFIDENTIALITY NOTICE - This e-mail transmission, and any documents, files or previous e-mail messages attached to it may contain information that is confidential or legally privileged. If you are not the intended recipient, or a person responsible for delivering it to the intended recipient, you are hereby notified that you must not read this transmission and that any disclosure, copying, printing, distribution or use of any of the information contained in or attached to this transmission is STRICTLY PROHIBITED. If you have received this transmission in error, please immediately notify the sender by telephone or return e-mail and delete the original transmission and its attachments without reading or saving in any manner. Thank you.

  • Call failed. Error: An unexpected 'PrimitiveValue' node was found when reading from the JSON reader. A 'StartObject' node was expected.

    Hi All,
    I am trying to add a new task to a Tasks list called CATasks. The list was created via Visual Studio “Add > New Item > List” process and not by custom code. The code I am using to add a task is shown below.
    What I have noticed is if I use my code to add a Task to a Task List created by Visual studio “Add > New Item > List” process, I get an error. Error message when adding an item:
    Call failed. Error: An unexpected 'PrimitiveValue' node was found when reading from the JSON reader. A 'StartObject' node was expected.
    But if I create the same list using custom code I don't get an error.
    Am I missing something in my custom code or is this a bug?
    I hope you can help.
    CEStar
    App.js Code:
    function createItem() {
    var call = jQuery.ajax({
    url: _spPageContextInfo.webAbsoluteUrl + "/_api/Web/?$select=Title,CurrentUser/Id&$expand=CurrentUser/Id",
    type: "GET",
    dataType: "json",
    headers: {
    Accept: "application/json;odata=verbose"
    call.done(function (data, textStatus, jqXHR) {
    var userId = data.d.CurrentUser.Id;
    addItem(userId);
    call.fail(function (jqXHR, textStatus, errorThrown) {
    failHandler(jqXHR, textStatus, errorThrown);
    function addItem(userId) {
    var due =
    new Date();
    due.setDate(due.getDate() + 7);
    var call = jQuery.ajax({
    url: _spPageContextInfo.webAbsoluteUrl + "/_api/Web/Lists/getByTitle('CATasks')/Items",
    type: "POST",
    data: JSON.stringify({
    "__metadata": { type:
    "SP.Data.CATasksListItem" },
    Title: "Sample Task",
    AssignedToId: userId,
    DueDate: due
    headers: {
    Accept: "application/json;odata=verbose",
    "Content-Type":
    "application/json;odata=verbose",
    "X-RequestDigest": jQuery("#__REQUESTDIGEST").val()
    call.done(function (data, textStatus, jqXHR) {
    var div = jQuery("#message");
    div.text("Item added");
    call.fail(function (jqXHR, textStatus, errorThrown) {
    failHandler(jqXHR, textStatus, errorThrown);
    function failHandler(jqXHR, textStatus, errorThrown) {
    var response = JSON.parse(jqXHR.responseText);
    var message = response ? response.error.message.value : textStatus;
    alert("Call failed. Error: " + message);
    Create List Custom Code:
    function createList() {
    var call = jQuery.ajax({
    url: _spPageContextInfo.webAbsoluteUrl + "/_api/Web/Lists",
    type: "POST",
    data: JSON.stringify({
    "__metadata": { type:
    "SP.List" },
    BaseTemplate: SP.ListTemplateType.tasks,
    Title: "CATasks"
    headers: {
    Accept: "application/json;odata=verbose",
    "Content-Type":
    "application/json;odata=verbose",
    "X-RequestDigest": jQuery("#__REQUESTDIGEST").val()
    call.done(function (data, textStatus, jqXHR) {
    var message = jQuery("#message");
    message.text("List added");
    call.fail(function (jqXHR, textStatus, errorThrown) {
    var response = JSON.parse(jqXHR.responseText);
    var message = response ? response.error.message.value : textStatus;
    alert("Call failed. Error: " + message);

    Hi,
    I am trying to involve someone familiar with this topic to further look at this issue. There might be some time delay. Appreciate your patience.
    Thanks 
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Patrick Liang
    TechNet Community Support

  • To 31.0. Now when I open an e-mail and read it, then want to return to the Inbox, I now need to click on the List Tabs

    Recently upgraded my four PCs running Win 7 professional from Thunderbird 24.6 to 31.0. Now when I open an e-mail and read it, then want to return to the Inbox, I now need to click on the List Tabs at the top right side of the screen, then click on Inbox it means an extra step and extra Mouse movement. How can I correct that? If not, how do I revert back to my previous version of Thunderbird? George G. (USN-USAF RET) Much obliged for your time and effort.

    Do you not close a tab after using it? If you close them, they can't accumulate.
    I haven't seen any change in TB3.1 in the way tabs work here.
    Older versions are available here:
    https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/
    Choose your version, then your OS (win32 in your case) then your locale (en-us I would think). Finally, when presented with something like ''Thunderbird Setup 24.6.0.exe'', right-click it and choose "save link as", then after it has downloaded, double-click the downloaded file to run it and install Thunderbird.
    You don't need to uninstall your newer version. Some add-ons may require help to locate their previous versions, compatible with what you've downloaded and installed; Lightning in particular comes to mind.

  • How do I remove a distribution list from Mac Mail's Previous Recipients list? 10.9.2

    I have a few pesky distribution lists that live on as ghosts. Distribution lists do not show up in Mail's Previous Recipients list. Any help as to how to remove them?
    The distribution lists I want to get rid of are not in my Contacs.
    Thank you,
    Rand

    Dear Allan,  Very interesting solutions to a stuck disk.  I'm going to keep it for future.
    I finally did get my disk out - because I started up using my Mtn.Lion BU (it's a Firewire) which I connected to my old MM late 2009.  There she was & I ejected it.
    And I did finally get my MM  2009 working again with Snow Leopard - with the great help from ds store.
    So now I have my Appleworks back too.   YAH!

  • Help with applescript/workflow/rule that would unflag mail when read (...)

    Here's my scenario:
    I have quite many mail.app rules that automatically filter and file incoming mails from newsletters, SNS, work, friends etc. and they all go in specific mailboxes (200+)
    I also have some rules that I trigger using MailActOn.
    Since with Lion theres now 6 different flags (and that you can rename them) I've included them in the rules actions and set them up to the following categories:
    - To Do
    - To Do Later
    - To File
    - News
    - Personal
    This actually allows me to have these smart mailboxes to appear only when they are flags active.
    Now for the first three I want to keep the flags permanently until I'm actully done with them.
    But for the "news" and "personal" ones I want to have them "unflag" once I read them.
    So to recap, is there a way to systematicall/periodically unflag messages when they are read from specific mailboxes or if they are flagged with a particular flag?
    I'd really appreciate if someone would help me out figure out an adequate solution to what I'd like to achieve.
    I'm not sure if a kind of a combination of either applescript/workflow/rule would actually make it work...

    Here's my scenario:
    I have quite many mail.app rules that automatically filter and file incoming mails from newsletters, SNS, work, friends etc. and they all go in specific mailboxes (200+)
    I also have some rules that I trigger using MailActOn.
    Since with Lion theres now 6 different flags (and that you can rename them) I've included them in the rules actions and set them up to the following categories:
    - To Do
    - To Do Later
    - To File
    - News
    - Personal
    This actually allows me to have these smart mailboxes to appear only when they are flags active.
    Now for the first three I want to keep the flags permanently until I'm actully done with them.
    But for the "news" and "personal" ones I want to have them "unflag" once I read them.
    So to recap, is there a way to systematicall/periodically unflag messages when they are read from specific mailboxes or if they are flagged with a particular flag?
    I'd really appreciate if someone would help me out figure out an adequate solution to what I'd like to achieve.
    I'm not sure if a kind of a combination of either applescript/workflow/rule would actually make it work...

  • Why is my iPhone getting the list of my e-mail address's from my computer?

    Why is my iPhone getting the list of e-mail address's from my computer?

    Oh! And 3 nights ago I ugraded my 3GS (this phone) to iOS 5.

  • Attempting to copy to the disk Ipod failed. the disk could not be read from

    Keep getting error message Attempting to copy to the disk.....Ipod failed. The disk could not be read from or written to. I can copy to Ipod from my laptop however, can not sync with my G-4 tower. I keep my library on an external HD Lacie d2. I've tried all the possibilities from the support page to no avail.. Need help... When error refers to disk is it referring to my external HD

    Hi c2xist,
    And you did follow all of the suggestions from this article?:
    "Disk cannot be read from or written to" when syncing iPod
    Also, you could go through these iPod troubleshooting steps, and see if they are of any help:
    The Five Rs
    -Kylene

Maybe you are looking for

  • Video playback issue with 3rd gen iPod Touch

    Hi all, I just recently discovered an issue with my iPod touch 3rd generation video playback. The issue just reared its head today and I have no idea what I could've done to cause it. It's a small issue but frustrating enough to cause a problem. If I

  • FTP File Sharing

    Howdy. I do produce video and audio for people. I am doing a project now where the clients dont even live in the same town or state. I would like to have a Mac Mini set up in the future where i can put the file on the hard drive and then send a link

  • Dreamweaver CS5 is not Supported on This Type of Mac

    I recently got a new iMac and went to reinstal my CS5 Web Premium Student Edition and only installed Dreamweaver. I was able to use it yesterday fine. Today when I booted up. the dreamweaver icon has a anti symbol over it and says "you can't open the

  • Virtual Channel Table (Logic Channel Number) in DCM9900

    Hello everybody, I would like to configure the DCM9900 (v. 10.0.02) in order to arrange the position where every channel will be tuned in our STB customers. I've read the manual and it seems that VCT (or LCN in some networks / literature) is not comp

  • HT5194 Can i store my "~/Library/Containers/com.apple.configurator." file on a server?

    Hello, I am trying to make it possible for apple configurator to be used on multiple computers so that i can share our VPP codes between them. I am in a K-12 setting and would really like to be able to have the ability to sync devices in multiple loc