Create new mail condition

When creating Apple Mail rules, I am greeted with a set of criteria - Account, Any Sender, Message Encrypted, etc.  I would like to create a new criteria but cannot figure out how to do that. 
Specifically I want to selected messages that are in a specific mail box and mark those messages as "Read" upon receipt.  I have an IMAP account at Yahoo mail and they put messages caught in thier Spam filters into a mail box they have named "Bulk Mail" - I cannot change the name or do anything as far as I can tell about the Mail Box.  I do not want messages that have been identified as Spam to show up in the Tag as unread email.
Gordon
Atlanta, GA
USA

I do not use the Apple Mail junk filter system - it was in adequate.  So I purchase SpamSieve which has worked perfectly for mail sent to my InBox. 
The question here is NOT about mail sent to my Inbox.  Rather it is mail sent to a mail box created and controlled by Yahoo.  Yahoo is placing the Spam in question in the Mailbox named "Bulk Mail".   Since the Yahoo email is IMAP, any emails placed in that mail box by Yahoo are synronized to Apple Mail and appear in the mail box in question. 

Similar Messages

  • STRANGE PROBLEM with "Create New Mail Account.scpt" when creating POP acct.

    I am using "Create New Mail Account.scpt" to create a POP account. It creates the account successfully. It fetches the mails successfully. Now the problem begins. After fetching all the mails once if u click "Get Mail" in mac mail, it fetches all the emails again and has now 1 original and 1 copy of the email set which is on the server. I just need 1 copy of the mail set not multiple. Please give me a solution or direct me to a help.
    Thanks
    SCRIPT
    global theUsername
    global thePassword
    set success to 1
    set theResult to true
    if theResult is not equal to false
    #set theAccountName to getAccountName()
    #set theUsername to getUsername()
    #set thePassword to getPassword()
    #set theEmailAddresses to getEmailAddress()
    #set theFullName to getFullName()
    -- POP Account
    if accountTypeString is equal to "POP" or accountTypeString is equal to "IMAP" then
    set theHostname to "THE HOST NAME"
    -- POP specific options
    if accountTypeString is equal to "POP" then
    set deletionPolicy to my getDeletionPolicy()
    if deletionPolicy is not equal to false then
    set deletionPolicy to item 1 of deletionPolicy
    set theNewAccount to my createAccount(accountTypeString, theAccountName, theUsername, theHostname, thePassword, theEmailAddresses, theFullName)
    if theNewAccount is not equal to false then
    setDeletionPolicy(theNewAccount, deletionPolicy)
    getAndSetAuthenticationScheme(accountTypeString, theNewAccount)
    getAndSetSMTPServer(theNewAccount)
    else
    set success to 0
    end if
    end if
    -- IMAP specific options
    else if accountTypeString is equal to "IMAP" then
    set theNewAccount to my createAccount(accountTypeString, theAccountName, theUsername, theHostname, thePassword, theEmailAddresses, theFullName)
    if theNewAccount is not equal to false then
    getAndSetCachingSettings(theNewAccount)
    getAndSetAuthenticationScheme(accountTypeString, theNewAccount)
    getAndSetSMTPServer(theNewAccount)
    else
    set success to 0
    end if
    end if
    end if
    if success is equal to 1 then
    display dialog "Account created!"
    else
    display dialog "Account creation failed!"
    end if
    end if
    -- Convenience handler for creating accounts
    on createAccount(theAccountType, theAccountName, theUsername, theHostname, thePassword, theEmailAddresses, theFullName)
    tell application "Mail"
    try
    if theAccountType is equal to ".Mac" then
    set theNewAccount to make new Mac account with properties {name:theAccountName, user name:theUsername, server name:theHostname, password:thePassword, full name:theFullName, email addresses:{theEmailAddresses}}
    else if theAccountType is equal to "IMAP" then
    set theNewAccount to make new imap account with properties {name:theAccountName, user name:theUsername, server name:theHostname, password:thePassword, uses ssl:true, full name:theFullName, email addresses:{theEmailAddresses}}
    else if theAccountType is equal to "POP" then
    set theNewAccount to make new pop account with properties {name:theAccountName, user name:theUsername, server name:theHostname, include when getting new mail:true, password:thePassword, uses ssl:true, full name:theFullName, email addresses:{theEmailAddresses}}
    end if
    on error
    set theNewAccount to false
    end try
    end tell
    return theNewAccount
    end createAccount
    -- Ask the user what they would like to name the account
    on getAccountName()
    repeat
    set theResult to display dialog "What would you like this account to be named?" default answer "Example: My Home Account"
    set theAccountName to text returned of theResult
    if theAccountName does not start with "Example:" then
    exit repeat
    end if
    end repeat
    return theAccountName
    end getAccountName
    -- Ask the user for the user name for their email account
    on getUsername()
    repeat
    set theResult to display dialog "What is your email user name?" default answer "Example: janedoe"
    set theUsername to text returned of the theResult
    if theUsername does not start with "Example:" then
    exit repeat
    end if
    end repeat
    return theUsername
    end getUsername
    -- Ask the user for the password for their email account
    on getPassword()
    set theResult to display dialog "What is the password for this account?" default answer ""
    set thePassword to text returned of theResult
    return thePassword
    end getPassword
    -- Ask the user for the email addresses for their email account
    on getEmailAddress()
    repeat
    set theResult to display dialog "What email address would you like to use for this account?" default answer "Example: [email protected]"
    set theEmailAddress to text returned of theResult
    if theEmailAddress does not start with "Example:" then
    exit repeat
    end if
    end repeat
    return theEmailAddress
    end getEmailAddress
    -- Ask the user for the full name for their email account
    on getFullName()
    repeat
    set theResult to display dialog "What is the full name for this account?" default answer "Example: Steve Smith"
    set theFullName to text returned of theResult
    if (theFullName does not start with "Example:") then
    exit repeat
    end if
    end repeat
    return theFullName
    end getFullName
    -- Convenience handler for asking the user what settings they would
    -- like to have for their special mailboxes. This handler also sets these
    -- values in Mail.
    on getAndSetSpecialMailboxes(theAccount)
    -- Sent messages default to storing locally
    set theResult to display dialog "Would you like to store Sent Messages on the IMAP server?" buttons {"Yes", "No"} default button 2
    log theAccount
    tell application "Mail"
    tell theAccount
    if button returned of theResult is equal to "Yes" then
    set store sent messages on server to true
    else if button returned of theResult is equal to "No" then
    set store sent messages on server to false
    end if
    end tell
    end tell
    -- Drafts default to storing locally
    set theResult to display dialog "Would you like to store Drafts on the IMAP server?" buttons {"Yes", "No"} default button 2
    tell application "Mail"
    tell theAccount
    if button returned of theResult is equal to "Yes" then
    set store drafts on server to true
    else if button returned of theResult is equal to "No" then
    set store drafts on server to false
    end if
    end tell
    end tell
    -- Trash defaults to storing on the IMAP server
    set theResult to display dialog "Would you like to store Deleted Messages on the IMAP server?" buttons {"Yes", "No"} default button 1
    tell application "Mail"
    tell theAccount
    if button returned of theResult is equal to "Yes" then
    set store deleted messages on server to true
    else if button returned of theResult is equal to "No" then
    set store deleted messages on server to false
    end if
    end tell
    end tell
    end getAndSetSpecialMailboxes
    -- Convenience handler for asking the user what IMAP
    -- caching setting they would like to use and configuring
    -- it in Mail.
    on getAndSetCachingSettings(theAccount)
    set theResult to choose from list {"Cache everything", "Cache everything but attachments", "Cache when read", "Don't cache"} ¬
    with prompt "Choose a message caching setting for this account:" default items {"Cache everything"} without multiple selections allowed
    if theResult is not equal to false then
    tell application "Mail"
    tell theAccount
    if (item 1 of theResult is equal to "Cache everything") then
    set message caching to all messages and their attachments
    else if (item 1 of theResult is equal to "Cache everything but attachments") then
    set message caching to all messages but omit attachments
    else if (item 1 of theResult is equal to "Cache when read") then
    set message caching to only messages I have read
    else if (item 1 of theResult is equal to "Don't cache") then
    set message caching to do not keep copies of any messages
    end if
    end tell
    end tell
    end if
    end getAndSetCachingSettings
    -- Convenience handler for asking the user whether they want to use
    -- an already defined SMTP server (if any) or whether they want to
    -- define a new one.
    on getAndSetSMTPServer(theAccount)
    tell application "Mail" to set everySMTPServer to every smtp server
    if ((count of everySMTPServer) > 0) then
    set listOfSMTPServers to {}
    repeat with eachServer in everySMTPServer
    try
    set listOfSMTPServers to listOfSMTPServers & name of eachServer
    end try
    end repeat
    createNewSMTPServer(theAccount)
    else
    createNewSMTPServer(theAccount)
    end if
    end getAndSetSMTPServer
    -- Handler for creating a new SMTP server, if the user has none set up
    -- already or if they choose not to use one of their existing servers.
    on createNewSMTPServer(theAccount)
    set theServerName to "THE SERVER NAME"
    tell application "Mail"
    set theSMTPServer to make new smtp server with properties {server name:theServerName, port:25, uses ssl:true}
    set smtp server of theAccount to theSMTPServer
    end tell
    getAndSetAuthenticationScheme("SMTP", theSMTPServer)
    end createNewSMTPServer
    -- Handler for asking the user what authentication scheme their server supports.
    -- The options are different for POP, IMAP, and SMTP. Unless you are told otherwise,
    -- it's best to leave these at their default settings.
    on getAndSetAuthenticationScheme(accountType, theAccount)
    if accountType is equal to "POP" then
    set theChoices to {"Password", "Kerberos 4", "Kerberos 5", "KPOP", "MD5"}
    set theDefault to {"Password"}
    else if accountType is equal to "IMAP" then
    set theChoices to {"Password", "Kerberos 4", "Kerberos 5", "MD5"}
    set theDefault to {"Password"}
    else if accountType is equal to "SMTP" then
    set theChoices to {"None", "Password", "Kerberos 4", "Kerberos 5", "MD5"}
    set theDefault to {"Password"}
    end if
    set theResult to choose from list theChoices ¬
    with prompt ¬
    "Choose an authentication scheme for this " & accountType & " server. Most servers support 'Password' authentication." default items theDefault without multiple selections allowed
    if theResult is not equal to false then
    tell application "Mail"
    set theScheme to item 1 of theResult
    tell theAccount
    if theScheme is equal to "Password" then
    set authentication to password
    else if theScheme is equal to "Kerberos 4" then
    set authentication to «constant exutaxk4»
    else if theScheme is equal to "Kerberos 5" then
    set authentication to kerberos 5
    else if theScheme is equal to "MD5" then
    set authentication to md5
    else if theScheme is equal to "None" then
    set authentication to none
    else if theScheme is equal to "KPOP" then
    set authentication to «constant exutakpo»
    end if
    end tell
    end tell
    if accountType is equal to "SMTP" then
    set theSMTPLogin to theUsername
    set theSMTPPassword to thePassword
    tell application "Mail"
    tell theAccount
    set user name to theSMTPLogin
    set password to theSMTPPassword
    set uses ssl to true
    set port to 25
    end tell
    end tell
    end if
    end if
    end getAndSetAuthenticationScheme
    -- Handler for asking the user what POP deletion policy
    -- they would like to use for their account.
    on getDeletionPolicy()
    set theResult to choose from list {"Immediately after being downloaded", "After a specified number of days", ¬
    "When I remove them from the inbox", "Always leave them on the server"} ¬
    with prompt ¬
    "Choose a POP message deletion option:" default items {"Always leave them on the server"} without multiple selections allowed
    return theResult
    end getDeletionPolicy
    -- Handler for setting the deletion policy established in getDeletionPolicy()
    on setDeletionPolicy(theAccount, thePolicy)
    tell application "Mail"
    tell theAccount
    if thePolicy is equal to "Immediately after being downloaded" then
    set delete mail on server to true
    set delayed message deletion interval to 0
    else if thePolicy is equal to "After a specified number of days" then
    set numberOfDays to my getDeletionInterval()
    set delete mail on server to true
    set delayed message deletion interval to numberOfDays
    else if thePolicy is equal to "When I remove them from the inbox" then
    set delete mail on server to true
    set delete messages when moved from inbox to true
    else if thePolicy is equal to "Always leave them on the server" then
    set delete mail on server to false
    end if
    end tell
    end tell
    end setDeletionPolicy
    -- Handler for asking the user what deletion interval they
    -- would like to use, if they are setting up a POP account
    on getDeletionInterval()
    set theResult to display dialog "After how many days would you like POP messages to be deleted from the server?" default answer "30"
    set numberOfDays to text returned of theResult as integer
    return numberOfDays
    end getDeletionInterval

    Hi amiaba, and a warm welcome to the forums!
    I can't quite tell what it's doing, but open Keychain Access in Applications>Utilities, click on your Keychain on the left, put .mac in the search bar, once you find it, double click on it and click show password.
    If you have no mail in there try this with Mail quit.
    Drag this file to the Desktop...
    /Users/YourUserName/Library/Preferences/com.apple.mail.plist
    Start Mail & see if it steps you through it.
    Not sure on the .uk thing, but is Date & Time>Time Zone set to the UK?

  • How to create new starting conditions for a workflow of shopping cart

    Hi all,
    How to create new starting conditions for a workflow of shopping cart
    SATYA

    Excecute SWB_COND
    Creating New:
    Click on Create button. If you cannot see that it could be a authorization issue
    then Business Object:  BUS2121
    Double Click the event linkage for one step workflow
    Define the expressions, Check Consistency and click on Traansfer
    Start Condition is created. If it is not Active click on the Red Button to make it Active
    Editing Already existing:
    Click on Edit Button If you cannot see that it could be a authorization issue
    then select Business Object:  BUS2121
    Click on the condition part (White area) of the start condtion needing editing
    Change the expressions, Check Consistency) and click on Traansfer.If it is not Active click on the Red Button to make it Active

  • Programatically create new mail item and open - body text lost on subsequent saves

    Hi,
    I have a problem with trying to create new GroupWise mail item from a
    button in a C3PO. I require programmatic access to this via the Object
    API, so it must be a saved draft. This is relativley straight forward to
    do - just create a mail item using the object API, and then use the Token
    API to open this item.
    This worked fine in 6.5.0, however in 6.5.1 and 6.5.2 I have noticed that
    when the user does a subsequent save, the body text of the message
    dissappears in the GUI (it is updated correctly in the draft however) -
    and all subsequent saves cause the body text to dissappear. If you close
    the mail item and open the draft manually you can continue as normal.
    As a test, I also tried to use the Token API to create a new mail item,
    and then again to save the item in the work in progress folder. This
    seems to work fine the very first time you do this, but each subsequent
    time the same behaviour is seen - i.e. the body text of the email is
    deleted from the GUI. Also, another observation here, event though the
    mail item was saved in the WIP folder via the token API command
    ItemSaveMessageDraft, it moves into the users MailBox when the user saves
    it manually.
    I have posted the two snippets of code from my test C3PO project at then
    end.
    This is a major problem, as we need to be able to reliably create new mail
    items from a toolbar button, so any help very much appreciated.
    Regards
    Greg
    Test case 1: Create a new message object in the WIP folder, and then open
    it using Token API...
    Dim sRetString As String
    Dim DraftMail As Object
    Set DraftMail =
    g_C3POManager.ClientState.CurrentAccount.WorkFolde r.Messages.Add
    ("GW.MESSAGE.MAIL", egwDraft)
    g_Commander.Execute "ItemOpen(""" & DraftMail.MessageId & """)", sRetString
    Test case 2: Create a new mail via token API, then use token API to save
    the item in the WIP folder...
    Dim sRetString As String
    ' create the new mail item...
    g_Commander.Execute "NewMail()", sRetString
    ' Get the folder path as a string..
    Dim GWFolder As Object
    Dim sAccount As String
    Dim sFolderPath As String
    sAccount = g_C3POManager.ClientState.CurrentAccount.RootFolde r.Name
    Set GWFolder = g_C3POManager.ClientState.CurrentAccount.WorkFolde r
    sFolderPath = sAccount & "\" & GWFolder.Name
    ' dirty the message so save works...
    g_Commander.Execute "ItemSetText(""X00"";Subject!;"" "")", sRetString
    g_Commander.Execute "ItemSetText(""X00"";Subject!;"""")", sRetString
    ' do the save...
    g_Commander.Execute "ItemSaveMessageDraft(""" & sFolderPath & """)",
    sRetString

    Hi,
    I have a problem with trying to create new GroupWise mail item from a
    button in a C3PO. I require programmatic access to this via the Object
    API, so it must be a saved draft. This is relativley straight forward to
    do - just create a mail item using the object API, and then use the Token
    API to open this item.
    This worked fine in 6.5.0, however in 6.5.1 and 6.5.2 I have noticed that
    when the user does a subsequent save, the body text of the message
    dissappears in the GUI (it is updated correctly in the draft however) -
    and all subsequent saves cause the body text to dissappear. If you close
    the mail item and open the draft manually you can continue as normal.
    As a test, I also tried to use the Token API to create a new mail item,
    and then again to save the item in the work in progress folder. This
    seems to work fine the very first time you do this, but each subsequent
    time the same behaviour is seen - i.e. the body text of the email is
    deleted from the GUI. Also, another observation here, event though the
    mail item was saved in the WIP folder via the token API command
    ItemSaveMessageDraft, it moves into the users MailBox when the user saves
    it manually.
    I have posted the two snippets of code from my test C3PO project at then
    end.
    This is a major problem, as we need to be able to reliably create new mail
    items from a toolbar button, so any help very much appreciated.
    Regards
    Greg
    Test case 1: Create a new message object in the WIP folder, and then open
    it using Token API...
    Dim sRetString As String
    Dim DraftMail As Object
    Set DraftMail =
    g_C3POManager.ClientState.CurrentAccount.WorkFolde r.Messages.Add
    ("GW.MESSAGE.MAIL", egwDraft)
    g_Commander.Execute "ItemOpen(""" & DraftMail.MessageId & """)", sRetString
    Test case 2: Create a new mail via token API, then use token API to save
    the item in the WIP folder...
    Dim sRetString As String
    ' create the new mail item...
    g_Commander.Execute "NewMail()", sRetString
    ' Get the folder path as a string..
    Dim GWFolder As Object
    Dim sAccount As String
    Dim sFolderPath As String
    sAccount = g_C3POManager.ClientState.CurrentAccount.RootFolde r.Name
    Set GWFolder = g_C3POManager.ClientState.CurrentAccount.WorkFolde r
    sFolderPath = sAccount & "\" & GWFolder.Name
    ' dirty the message so save works...
    g_Commander.Execute "ItemSetText(""X00"";Subject!;"" "")", sRetString
    g_Commander.Execute "ItemSetText(""X00"";Subject!;"""")", sRetString
    ' do the save...
    g_Commander.Execute "ItemSaveMessageDraft(""" & sFolderPath & """)",
    sRetString

  • I have downloaded the iOS6 software on my iPhone4 and now I can't delete/move or create new mail. The bar at the bottom has disappeared. Does anyone have any solutions

    I have downloaded the iOS6 software on my iPhone4 and now I can't delete/move or create new mail. The bar at the bottom has disappeared. Does anyone have any solutions?

    Hold Power and Home buttons until iPhone restarts. Ignore "Slide to Power off".

  • Can't create New Mail or Reply

    After recent security update was downloaded, I have not been able to create New Mail messages or Reply to those received. The only work around has been to open the received message and select SEND AGAIN from the menu and redo the address etc to get it to correct person. Clicking NEW, REPLY, REPLY ALL in the menu bar does nothing.
    Any Ideas?

    Do you have any third-party Mail plug-ins? In the Finder, go to HOME/Library/Mail/. Do you see a Bundles folder there?
    If not, it could be some LaunchServices cache corruption. The following article describes how to manually reset LaunchServices. The notes at the bottom of the article also provide information about the side effects of deleting each of the files involved.
    Resetting Launch Services
    The following article also describes the side effects of cache cleaning:
    Side effects of System cache cleaning
    The following article provides links to some utilities that can be used for troubleshooting and cache cleaning:
    Resolving Disk, Permission, and Cache Corruption
    It seems that the most appropriate utility for solving this particular problem is Tiger Cache Cleaner.
    In addition to the utilities mentioned above, you may also consider OnyX, if for no other reason, because it's free. If you want to try OnyX, after installing it, do this (be sure to read the articles about the side effects of cache cleaning first):
    1. Quit all applications.
    2. Launch OnyX and enter your administrator password.
    3. Click Maintenance. In the Reset section, check LaunchServices database.
    4. You may uncheck any other pre-checked options if you've already done them using other utilities.
    5. Click the Execute button.
    If that doesn't solve the problem, you may try again checking the Links between documents and applications option in step 3 instead.
    And yet another free cache cleaning utility is Cache Out X.
    Please let me know whether you were able to solve the problem, what worked for you and what didn't.

  • New-CMGlobalCondition unable to create New script Condition using Power Shell

    I am using config Manger 2012 and trying to use power shell cmdlet to create a new Global Condition using PowerShell but its not working for me using this
    Do not understand how to use that command any idea.
    New-CMGlobalCondition -DataType Boolean -DeviceType Windows -FilePath file.ps1 -Name test -ScriptLanguage PowerShell
    Error comes as 
    New-CMGlobalCondition : No object corresponds to the specified parameters.
    At line:1 char:1
    + New-CMGlobalCondition -DataType Boolean -DeviceType Windows -FilePath file.ps1 - ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (Microsoft.Confi...onditionCommand:NewGlobalConditionCommand) [New-CMGlobalCondition], I 
       temNotFoundException
        + FullyQualifiedErrorId : ItemNotFound,Microsoft.ConfigurationManagement.Cmdlets.AppModel.Commands.NewGlobalConditionCommand

    Hi,
    What's your version of SCCM? I ran this command line on SCCM 2012 R2 CU2.
    It seems SCCM 2012 R2 CU2 fixed New-CMGlobalCondition cmdlet issue.
    "The New-CMGlobalCondition cmdlet incorrectly requires use of the
    -WhereClause parameter."
    Description of Windows PowerShell changes in Cumulative Update 2 for System Center 2012 R2 Configuration Manager
    Best Regards,
    Joyce

  • Create new mail folder

    I have a new iPod Touch, 8 gb, version 3.1.2.
    Is it possible to create additional mail folders?
    Thanks.

    The mail account is with Rogers and I'm using the mail app that came with the iPod Touch. I've set up the mail app account using the information from my Rogers account. I connect the iPod using Airport on our desktop iMac which uses Apple's Mail.
    I can receive and send email from the iPod but I simply want to create additional mail folders in the mail app.

  • Mail working fine except create new mail

    (On a Mac Luxo under OS X Tiger 10.4.11 with Mail 2.1.3 managing 9 mail accounts, 7 IMAP and 2 POP boxes.)
    Since two days, it was impossible to create a new mail (or create a reply).
    Mail hung and the color wheel turns and turns… without taking more processor time (Activity Monitor).
    Force Quit and retry = idem.
    Repairing and cleaning the Mail database = Mail more responsive but the problem remains.
    Repairing the rights with Disk Utilities = no change, same bad result.
    Trying again, doing something else… and when I came back, the new window was there !  And sending works perfectly.  So I tried once more but the problem is still there except that now, I wait…and after 7 minutes the window opens !  Yes 7 minutes !
    How can it be that everything works except this very long time to create a new mail ?

    And here is the solution !
    System Preferences > .Mac > delete account informations (ID and password)
    (Now that we had to migrate to iCloud, .Mac is no use any more ! 
    A pity that « migration ».  Shame on you Apple !  What about all those materials working fine… till end of June; do we have to trash all of them ?  For me, it 6 machines : 2 iMacs, 2 iPhones and 2 iTouch !

  • Cannot create new mailing list

    I have a large addressbook in TB with many mailing lists created in the past. I am trying to create a new one. When I go "File, New", the mailing list option is blanked out.

    In Address Book
    If I select a 'Mailing List' (not an address book)
    File > New > Mailing list is greyed out because you cannot create a mailing list from a mailing list.
    If you select an address book, then 'Mailing List' should be available.

  • Creating new mailing list.

    CRM import the file - 600 new adresses (it's a txt/tab file made with Excel/Mac) but BC do not visualize the new mailing list, so I cannot make any further choice for campaigns. Other question: can I create email list fron CRM and how can I change option filters to create new list. Can someone help? New to BC. Thanks

    Dear Liam, it's just I am new to BC. I first had problems to create mailing list importing .csv files, then turned to txt file.
    Had no problems with 50 address txt file, meaning BC showed me that list with those 50 custumers included.
    But when the list is about 600 addresses, BC does not show the list I have created as a new mailing list with its name.
    I dont know why. The CRM add those 600 new addresses, but there is no mailing list connected to those 600.
    So I have a great CRM now, but cannot choose those among them I want to send email campaigns to. For instance:
    all company working in the same town (which was the title of the email list I should have created, that indeed BC dont show me).
    Am I doing something wrong with saving correctly the .csv or txt file? I started from the basic Excell templates given by BC.
    Is there a fast way to erase my CRM, in order to rebuild it with mailing list criteria?
    Much confused, as you see.
    Please try help me. And thank you very much for first answer. Waiting.

  • Can't create new mail or reply to received emails

    I haven't changed anything on mail but suddenly 2 weeks ago when I clicked on new(mail) - nothing happened and its the same with reply or reply all or forward. Eventually the "whirly thing" comes on and I have to force quit.
    I can receive emails ok.
    Please help.

    Hi Stanley
    I tried what you said regarding the disk permissions but its still the same. The thing is I can't actually create an email to send so I can't try the second option you suggested.
    When I click on New Mail and nothing happens - the box doesn't even appear for me to start typing then eventually the whirly thing comes on and I have to force quit Mail. In the Force Quit Applications box it has Mail then in brackets Not responding.
    My ISP is virgin and its Mac Mail and its a POP account.

  • Creating new pricing condition type in srm ecs

    Hi Guru's
    I see that there is an option to select the Source system " local" , "other system, eg: R/3" while creating a new condition type in SRM. can you please let me know what is the importance of this? can we determine price in srm using backend pricing conditions? can we invoke the backend pricing procedure from srm and populate the price in SRM PO?
    any helpful info would be appreciated
    regards
    deepu

    Hi Nitin,
    Appreciate your response. Can you please let me know how major development is it? if you can provide highlights that would be helpful. I do understand that we can customize the pricing procedure in SRM. Can you please share if you have any documentation regarding creating new condition types, access sequences, condition records in SRM similar to ECC? it would be appreciated if you can send it to pradeepwsu(gmail) id.
    Thanks in advance
    Deepu

  • How to restore all inbox data after obliged to create new mail account

    After my Thunderbird account mysteriously disappeared I had to re-open another mail account. After difficulty I restored address book. But only about 30 percent of email inbox restored. How can I restore the rest, many of which were important to me.

    '''Background info to help you understand your mail account:'''
    As you saw in the Profile folder mail accounts, 'folders' you see in the Thunderbird FolderPane are actually Files; mbox files.
    Emails are downloaded to your Inbox and stored one after the other in the order they were downloaded. So, the emails are not stored as individual files, they are written into a text file which can get bigger and bigger if you do not manage the Inbox.
    Any emails you delete, from your point of view they disappear from Inbox and reappear in 'Deleted' folder (Also called Trash).
    In reality, those deleted emails are 'marked as deleted' and are still in the Inbox, but hidden. This means that if you had accidentally deleted an email, it would be easy to quickly get it back.
    However, the deleted emails are still taking up space, so to clean up the file and remove those 'marked as deleted' emails, you have to 'compact' the folder. If you do not compact your folders then you increase the possibilty of getting a corrupted file and losing emails.
    Using folders to organise emails into groups keeps the file size smaller and makes it easier to locate emails. It is also less risky. Smaller files also use less memory to open.
    '''How to create Folders:'''
    Select the mail account name in the Folder Pane. If you want to create them in 'Local Folders' account, select 'Local Folders'.
    * 'File' > 'New' > 'Folder'.
    * Give folder a name eg: Bills or Family or Friends etc
    * click on 'Create Folder' button.
    you can create as many folders as you need.
    '''How to move emails from one folder to another:'''
    There are a couple of ways to this, so you could try out the methods and choose the one you find most comfortable.
    Suggest you move one email first and then try to move a group.
    '''1. Using right click options.'''
    * Right click on highlighted/selected email in list
    * select: 'Move to' > mail account / Local Folder > select name of folder
    '''2. Using toolbar: '''
    * Select email in list so it is highlighted
    * 'Message' > 'Move to' > mail account > select: Folder'
    '''3. Drag and Drop method'''
    * Left click and keep down on hilighted email in list to grab
    * Move the mouse pointer to hover over the Folder you want; this is dragging the email,
    * Release the mouse to drop the email into that folder.
    '''How to highlight several emails:'''
    All the above methods work if you select one email or a highlighted group.
    '''To select a batch of email eg: 10 adjacent emails'''
    * click on first email
    * Press 'Shift' key and click on eg:10th email - all emails in between become highlighted.
    '''To select various emails to put them as a group.'''
    * Hold down 'Ctrl' key and use mouse to select various emails.
    '''To select all emails in folder:'''
    * click on first email in list
    * Hold down 'Ctrl' key and press 'A' - All emails will be highlighted.

  • Mail crashes whenever I try to reply or create new mail

    For the past 24 hours, whenever I try to reply to an e-mail, or create a new one, mail suddenly crashed. It is very reliable in this way; there are no exceptions. The the newest update/change to my configuration was the update of the 10.4.4 system stuff from Apple, followed a few days later by an update for the 15 in G4 Powerbook battery management.
    Also, though not related to mail, the Software Update function does not work - "Can't connect to Update Server", and Safari will not load any pages - "CAn't connect to server...". However, Network Diagnostics says that I am connected to the internet, as does Firefox - it loads pages just fine! All other computers in our home network, including my G5 Tower, are performing and access the internet just fine.

    OK. Verify/repair the startup disk (not just permissions), as described here:
    The Repair functions of Disk Utility: what's it all about?
    Do you have any Mail plug-ins or system utilities that could interfere with Mail? In the Finder, go to each of the following folders (if they exist). What do you see there?
    /Library/StartupItems/
    /Library/InputManagers/
    ~/Library/InputManagers/
    /Library/Mail/Bundles/
    ~/Library/Mail/Bundles/
    Note: For those not familiarized with the ~/ notation, it refers to the user’s home folder. You can easily locate any of the folders referred to in this post by copying the folder path here, doing Go > Go to Folder in the Finder, and pasting the folder path there.

Maybe you are looking for

  • I am trying to use the Home Sharing feature but none of my current library is showing up under my Share Library ?

    I recently purchased a new lap top and thought the easiest way to move my library before wiping my old lap top would be the Home Sharing feature.   I have gotten everthing set up for Home Sharing but the library on my current laptop isn't showing und

  • How to use Apple TV with Logitech Harmony remote WITHOUT having to unpair?

    I have a Logitech Harmony 880 remote which I am trying to set up with my new Apple TV. Within the Logitech software I set up Apple TV as a MediaCenter PC device. I've followed these instructions already. http://logitech-en-amr.custhelp.com/app/answer

  • Problem in formula

    Hi all, I am writing formula in query designer. when i want to do conditional calculation short of like this (Actual Costs > Plan Costs)* (Plan Costs + Plan Deviation) + (NOT (Actual Costs > Plan Costs)) * Actual Costs but when i write this formula (

  • Gl Terms Help

    What is actual flag? what is A-Actual, B-Budget, E- Encumbrance journals mean. Thanks & regards, pallis

  • I messed up Lens Correction - photos titled

    Some of my photos are tilted or slanted. I beleive it happened when I was exploring options in LENS CORRECTION-Upright. How do I set this back to REGULAR or default. I can correct each photo (one at a time), but this is very time consuming.  Thanks