How to move all already spam marked e-mails to spam folder?

Some e-mails are alread marked wich spam (there is a burn icon on it), but still in my main received folder. How to move them all to spam folder at once?

Did you try select the emails, drag and drop on the Trash Folder?
Try create a filter to move the emails marked as spam to the Spam folder.
*[http://mzl.la/1pNQ4G3 Organize Your Messages by Using Filters]

Similar Messages

  • How to move all images from a site to a new folder and not lose links?

    I have always wondered this.....tried a few things with no success..Whenever I take over a site from someone, a lot of time the previous designer did not make folders for ANYTHING including images.....so in thier main directory they have 20 html pages, 200 images and css files etc.....I can not think this way.....I want to just make a folder for images...put all the images there.....a css folder....etc. Once I do this all my links are lost and it is to much work to replace each one with the broken link finder in Dreamweaver......In some other applications like Logic Studio ( a music production application as an example ) it is very similar. Your main song file is pointing to linked audio files all over your hard drive....If you decide you want to move that drive it will search for the linked audio files and when it can not find them it asks you to specify the new folder or search manually for them.....if I had moved 200 audio files it comes in quite handy because I can just point to that new folder and im done.......finally, my question is what would you guys recommend for doing this? Moving hundreds of image files so that I can organize things...........any help would be GREATLY appreciated...I have googled but found no great technique...

    I'm having the same or similar issue...  I think...  trying to do a little house cleaning in the file structure.  For example, in our events folder I'm creating archive folders (i.e. - 2004, 2005, ect...) and when I use the Files Panel to drag and drop the past event pages into the newly created archive folder, the pages loose all their links.
    Image link prior to and after moving are the same (../images/logo1.gif)
    It does ask me to confirm that I want to move the file but nothing about updating the links.  Is it due to the way the files are linked in the original files?
    Thanks in advance for any help!!!

  • How to move all contacts from phone to sim card?

    Could someone advise me how to move all contacts in my Treo 500 from the phone to its SIM card, and what is the capacity of the SIM card as I have approx 700 contacts in the phone.
    Thanks,
    Stuarp77
    Post relates to: Tungsten E

    You cannot, in one pass.
    Sorry.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to move all files from a folder for a user to a centralized folder on a core server with a GP

    Hello,
    I was curious if someone know how to move all the files of a user "local" profile on a Terminal Server to that of a centralized server where the "local" profile of like the user desktop, favorites, setting, etc are stored in the event
    the local profile on the TS become corrupt it can pull from this server...
    The problem I have is no matter what I tell users to save there files to our Y drive that is a folder that is synced
    across all 6 of our TS servers, users still store files on there desktops, so as you can imagine if one day they are on one server, then next day they could be on another and there files aren't the same.... hence the reason why I want to move all there files
    to the centralized server so when I redo the profiles from scratch on the TS server in the farm they suck files from the core server and have all of the files they are used to having.... 
    So I was curious and I've heard from some this is possible in a GP, but I'd like to move the contents of all 6 TS for
    each user or if I have to d this on  per user basis I will, just looking for a way to move the files....

    Hi Trevor,
    To move all users’ desktop to a server, we can use Folder Redirection to do this. The path for Folder Redirection is:
    [Group Policy Object Name]\User Configuration\Policies\Windows Settings\Folder Redirection
    In this situation, we can choose to redirect desktop to the root of a network file share or a folder on a network share.
    Regarding how to configure this, the following article can be referred to for more information.
    Configuring Folder Redirection
    http://technet.microsoft.com/library/cc786749.aspx
    Hope it helps.
    Best regards,
    Frank Shen

  • How to move all the standard and adhoc reports from cube to multi provider

    How to move all the standard and adhoc reports from the basic cube to multi provider?
    i created this multiprovider to do the maintenence on the basic cube. for example the infocube physical partition, line item dimension and compression.
    what we decided to do is move all the Standard and ad-hoc reports from the basic cube to the multiprovider. How to do it? and make a copy of the basic cube and do the maintenence on the cube. please help.
    Thanks in advance sdn experts!

    Hi Les,
    This sounds good and one thing we try to always keep in mind when undertaking such activities is to always minimise the impact to the user and make the process as transparent to them as possible. So lets say you have your multiprovider and copied queries up in Prod, these queries will still pick up the data from the base cube.
    Now you need to make a copy of the base cube for some changes to the cube model, I would suggest that you copy the cube and make your changes on the copied cube itself. Then 9depending on the changes done) you can load data from Original Cube to New Cube. When this is being done, make sure that you change your queries to add a restriction on 0INFORPOV by Original Cube.
    After the load to the new cube is complete you can run reports restricted to each cube to verify the numbers. Then change the 0INFOPROV restriction in the queries to point to the New Cube and disengage the old cube from the multiprovider.
    Hope this helps...

  • How to move all files but X to Y

    It doesn't really matter if it's in the terminal or if it's a applescript but I need to know how to:
    Move all files in a dictionary but a few named.

    Could you pleas explain more?
    If you do not understand the shell while loop, it is possible that using shell commands is a bit more dangerous than you might want to try.
    The explanation:
    ls -a | grep -v "X" | while read file
    do
        mv "$file" "Y/"
    done
    ls -a will list all the files in the current working directory (including the invisible files that start with a leading period.  Thinking about this, maybe you do not want to include -a.  You could cd /path/to/the/desired/directory as a way to set your current working directory as the directory you wish to move things from
    cd "/path/of/the/from/directory"
    ls | grep -v "X" | while read file
    do
        mv "$file" "Y/"
    done
    The ls command's output is piped (the vertical bar | ) into the grep command (general regular expression parser).  The -v option tells grep to throw away any lines (filenames) that match the regular expression "X".  So if the regular expression X matches all the files you do not want to move, the filenames send to the next pipe will be the files you wish to move.
    The while loop will read the filenames grep has selected and invoke the mv (move) command for each file selected by grep and move them to the destination directory Y
    The bigest risk is that you will execute this in the wrong directory and move the files that you need somewhere else.  OR WORSE, if "Y" is NOT a directory, and you DO NOT put a trailing / the mv could move easy file to the destination file, deleting the previous file for each file moved, so effectively deleting every file in the directory except the last one.
    This is why I said if you do not understand what is going on with the shell commands, you could do damage to your system.
    ls could have the /path/of/the/from/directory instead of using the cd command.  The grep command could be replaced with egrep that allows using alternate matching strings:
    ls /path/of/the/from/directory | egrep -v "abc.txt|def.jpg|xyz.mp3|etc..." | while read file
    do
        mv "$file" "/path/to/the/destination/directory/"  # notice the trailing slash for safety
    done
    Good luck.  I hope you do not destroy your system

  • How do you create a Spam folder in Mail

    How o you create a Spam folder in Mail?

    This depends on your email provider but marking an email as Spam/Junk may automatically create a Spam/Junk folder.
    Swipe from right to left on the email preview, select "More", and touch "Move to Junk"

  • How do I create a spam folder for my sms messages?  This is a common feature found in Samsung smartphones and I find it very helpful, thanks!

    How do I create a spam folder for my sms messages?  This is a common feature found in Samsung smartphones and I find it very helpful, thanks!

    There is no app that will do this.
    Tell Apple: http://www.apple.com/feedback/iphone.html
    I doubt I've had over 5 spam texts since I've had a cell phone and I reported all of them. How many are you getting?

  • How to send emails to spam folder?

    I just got my Note4 and the phone's Help tells me that I need to select the email, then the bottom menu will populate with a little red circle with a + in it. I am to click that and the email address is sent to spam. But my bottom menu is NOT giving me that spam icon to click.  How can I block emails? Or how can I get that little icon to show up?
    Thanks!!

    Yes, I have unsubscribed to the emails that allowed me too. Now I would
    like to block spefic addresses and/or domains.
    My email addresses are @verizon.net, @gmail.com and a corporate one. I am
    using Gmail for the Gmail accounts and using the default email service that
    came on the phone. It's icon is an envelope with a red @
    I know the gmail service allows me to easily click "report spam"  but using
    note 4  how can I block emails in my  verizon.net account and corporate
    account?
    Thanks.
           <https://community.verizonwireless.com>
    A message from the Verizon Wireless Community
    <https://community.verizonwireless.com>
    <https://www.verizonwireless.com/wcms/consumer/explore.html> 
    <http://www.verizonwireless.com/wcms/consumer/shop.html>  [image: MY
    VERIZON] <http://www.verizonwireless.com/b2c/myverizonlp/> 
    <http://www.verizonwireless.com/support/>
       how to send emails to spam folder?  created by Verizon Wireless Customer
    Support <https://community.verizonwireless.com/people/vzw_customer_support>
    in Android - View the full discussion
    <https://community.verizonwireless.com/message/1176922#1176922>

  • How to move all files from a folder for a user to a centralized folder on a core server

    Hello,
    I'm curious if there is a batch file that can be made to move the contents that are setup like this....
    I'm having to redo a TS cluster and I'd like to make a batch file script that can be executed that moves the contents of say 'jsmith's local desktop profile @ \\NGTTS1\users\jsmith to a centralized folder on our roaming desktop profile server that saves
    all of the files for the desktops @ \\NGTFS1\users\jsmith.
    The problem I have is no matter what I tell users to save there files to our Y drive that is a folder that is synced across all 6 of our TS servers, users still store files on there desktops, so as you can imagine if one day they are on one server, then
    next day they could be on another and there files aren't the same.... hence the reason why I want to move all there files to the centralized server so when I redo the profiles from scratch on the TS server in the farm they suck files from the core server and
    have all of the files they are used to having.... 
    Now I know I can do this with a MOVE command I've just never done one to this exact.
    Hopefully someone knows the command to move all the contents of one folder on one server to the folder on a different server. I've already got the bulk of the coding done of the .bat script I just don't know this move command:
    would it be this:
    move \\NGTTS1\users\jsmith *.* \\NGTFS1\users\jsmith
    any help would be appreciated, I'm sure this is a easy command to do!
    This is the coding I have so far....
    @echo off
    color 0A
    title Moving Local Profile folder to Centralized Profile Folder on Core Server.
    :start
    echo Welcome, %USERNAME%
    echo What would you like to do?
    echo.
    echo 1. Moving Local Profile folder to Centralized Profile Folder on Core Server
    echo. 
    echo 0. Quit
    echo.
    set /p choice="Enter your choice: "
    if "%choice%"=="1" goto Move-user-profiles
    echo.
    if "%choice%"=="0" exit
    echo Invalid choice: %choice%
    echo.
    pause
    cls
    goto start
    :Move-user-profiles
    echo.
    set /p profile="Enter user profile: "
    move "\\NGTTS1\users\%profile%" *.* "\\NGTFS1\users\%profile%"
    echo moving files from local profile folder to FS1 profile server, stand-by...
    echo.
    goto cancel-special 
    :cancel-special
    set /p cancel="Type cancel to stop action: "
    if not "%cancel%"=="cancel" exit
    cls
    echo Action is cancelled.
    echo.
    pause
    exit

    In Windows we would do this using Group Policy.  There is a Policy setting that csn move the Desktop folder to any server you want to move it to.  Once set it will automatically do this for you.
    You should post in the Group Policy forum to find out how we use Group Policy to manage users profiles in Windows.
    You cannot use a script to relocate a users Desktop folder.  The desktop is locked by the time the users logon script is finished running.  It the desktop and profile are already being managed by Group Policy then this can only be done with GP.
    There are also numerous issues associated with deployment and re-deployment that you need to address  Post your questions in the Winows Deployment forum to get assistance with deployment issues.
    Again - want you are asking is not generally possible because of how Windows is designed.  This would only likely work on a simple system or on a stand alone PC and then only under a very limited set of circumstances.
    Use GP folder redirection to do this.  For deployment use Deployment Forum and for TS specific issues post in the RDS forum. 
    All of  this needs to be considered correctly for TS users inn a TS Cluster environment. (TS Cluster?? - not sure what you mean by that.
    ¯\_(ツ)_/¯

  • How to move all of itunes onto external hard drive?

    Right now, I have my music library connected to iTunes on an external hard drive. iTunes is installed on my desktop computer. What I'd like to do is have iTunes wholly on my external hard drive so I could move it back and forth between a laptop and my desktop. I edit a lot of tracks and to make sure the edits carry over, I'd just like it all on the external hard drive instead of downloading iTunes onto both devices. Also I add and delete different playlists with regularity.
    Plus my iTunes runs sluggish (freezes for several seconds every time I click on something) and after a google search, one reason might be because my massive music collection is on a different drive, so I'm curious if keeping it all on the external would help.
    I've searched around on how to do this, but all I find is how to move my library onto the external (its already there). I'm using Windows 7.

    See Make a split library portable.
    The larger the library and the more playlists you have the longer it takes to process each change in the database.
    tt2

  • How to move all FC X files to another drive?

    I want to move all my FC X stuff.  Everything currently resides on a Western Digital Firewire 800 eSATA drive.  I'm working on a MacPro tower with 20 GB of RAM and 4 cores.  I'm not overly pleased with the performance when FC X accesses this drive and it gets hot, really hot (burn your hand hot) when backround rendering for large files.  I suspect moving the whole kit and kaboodle to an internal SATA would improve overall performance a bit and I can use smcFanControl to regulate the temperature.
    The question:  By doing this will FC X lose all the links to the source files that I've already used in projects?  If so, how do I reconnect media?
    I have about two tons of source footage that I imported from cam archives primarily as an excersise when I was first beginning to learn about importing footage in the new app, so much of it is not critical (I can always reimport from the original archives safely held on another drive) however, they've already been analysed and sorted into smart collections at this point and I may want to use some on future projects.  So - should I delete events not used in projects thus far and then properly move the ones that are used in projects via the Move command in the FILE drop down menu or just copy all the files and folders in the FC X folder on the eSATA drive to the internal drive via the finder?  I'm not currently in the middle of any projects.  All have been succesfully completed and rendered out as movies.  The clients are all happy and the most important thing - the checks all cleared, so no worries there.  Benefits? Pitfalls?  Any opinions?  We're talking about 1.5 TB of data here.
    Jimbo
    Damage Control  ✴
    [email protected]
    Doctors Of Chaos

    WizOfAhhhs wrote:
    VERY USEFUL answers!  Unfortunately they don't have a button for that. 
    Now there's an idea...! maybe worth sending apple feedback about their discussion group
    WizOfAhhhs wrote:
    I just noticed you're a Bruce from down under.  I just returned from Sydney where we worked on the pyro displays for the new year show in the harbor.  Hope you got to see the show and enjoyed it.  Channel 9 covered it very well, I thought.  Posted on uTube.  Too bad they didn't put it up there at higher resolution.  Maybe it's on Vimeo in hi-res, haven't checked.
    Hahah... that's too funny, Bruce from down under. Yes Bruce is a common ozzy names just as much as Scott, Gavin, Turner etc.... But yeah how lucky are you...!
    WizOfAhhhs wrote:
    Ausie to the rescue!!!  Thanks for all the help, Blimpie.  All files successfully moved and linked to current projects.  FCP X running much more smoothly/faster and no more BAD ACCESS errors causing crashes.
    That's cool Jimbo, glad I could help. Next time your here in Sydney pop me an email, we should meet up.
    WizOfAhhhs wrote:
    I guess the eSATA firewire 800 drive was just not quite fast enough for constant read/write access or maybe it was overheating.  I put all the camera archives over there and everything seems fine now.
    Shouldn't be the case, I've cut successfully from a 500gb My Passport Studio HD But keeping in mind I transcode my media.
    WizOfAhhhs wrote:
    BTW, the really large events files not referenced in any current projects were able to be moved via the finder much faster than from within FCP X without any noticeable problems.
    I always transfer via finder however I try not suggesting that because it's something you have to feel very comfortable with.
    Thanks for the link, I'll check it out.... Happy editing
    Tony

  • How to move all app data from one user to another? (One mac)

    Hi. I've been having this problem for a while. So recently, I've made a new account for myself, since I was using my mom's user account. I don't want to keep all of my files, emails, and icloud on her user, since it's used by everyone in my family. I use iMail now because hotmail blocked my email because "Someone hacked me" and they kept it locked for all these months, and I can't give enough proof to show it was mine, since I forgot every email I've sent now.
    And iMail is pretty cool, adding your own rules and stuff. Except you don't need a password to log in. I just deactivate my iMail via system preferences as a log-out, and then re-activate it as a log-in.
    So, back to the question.
    How can I move ALL app data from my mom's user account to my new one? Her acount also has pictures of our germany vacation. So not every file.
    You see, I game on my mac mostly because steam is really complicated, using internet just to play a game that doesn't need internet and stuff.
    And steam doesn't have a lot of casual games.
    So I want to move my game data, save files and every little piece of application info that my games have on my mom's account to mine. I've asked this question on Yahoo answers, and all I got was an answer of "File IS data, or datum itself, You are wrong. I cannot give you an answer." -.-
    I'm not experienced with terminal either, so I'll need a ton of explanation of how to use it if that's how it can be done. It really really confuses me and I'll just give up.
    Thanks in advance.
    Oh and, side question, When will OS X Mavericks be open to public and how much will it cost?

    Nour j wrote:
    Oh and, side question, When will OS X Mavericks be open to public and how much will it cost?
    http://www.apple.com/osx/preview/
    Will be released sometime in the fall.  Cost unknow at this time as Apple has not released this info to the public.

  • How to move all or partial data from Mac to an external hard disk?

    Hei,
    I need to learn how to move the movies/projects/events from mac hard drive to another external hard drive.
    So basically, I have always imported all events from my video camera (the original clips) to iMovie located in my MacBook Pro hard drive. But after videoing for one year, the hard disc is starting to get full, and I cannot continue using only the laptop's hard drive.
    So I would like to move part OR all of my iMovie related stuff to another external disk drive (connected with USB wire). How do I do that? Is it possible to have some events located in Mac's own hard drive, and some clips/projects in the external hard disk? How to arrange all this?
    I know that "projects" are linked to the original event clips, so if I would be able to export some part of my iMovie data to the external hard drive, I should export both, for example, everything from the same year (the events) which is linked to the projects that are using those data.
    Any tips would be greatly appreciated.

    ok First with IM9, you can easily move stuff around. Here are some lessons learned from my experience managing projects across 6 different drives.
    1. All Drives must be formatted macos extended journaled
    2. The large terabyte drives are great for long term storage of events
    3. When you are working on a project, if possible, try to move the clips the current clips you will need to your internal hard drive. This is only necessary if you care about any time machine back ups.
    4. I have also worked on project straight from the external drives. I also use portable drives such as WD passports. These are small 500 gig drives that can travel with you. I have three of those. LOVE THEM.
    5. One way to move projects and clips and keep things organized is to move the project using command drag. It will ask, do you want to move just the project or project and clips. Then voila all clips and project are then moved to that drive!
    6. REMEMBER...MOVE WITHIN IMOVIE using COMMAND Drag. NEVER EVER USE THE FINDER. This is for both projects and events. Using the Command Key will ensure the projects are moved and not just copied!
    7. Last but not least, if you have changed the dates of events using change date function in imovie....For some reason, there is a bug. It inconsistently will change the date. Don't know why and have reported the issue, but it is still not fixed!
    But its still a great little app!

  • How to move all files in Organizer to a network location

    I have a fairly large catalog with about 20 album categories, each with between 5 and 15 albums, totalling about 20,000 photos, all currently residing on my laptop. I need to move everything to a networked drive but can't find how in the Elements help system. Is there a quick and easy way to do this?
    Message title was edited by: Brett N

    If you have a complex folder structure, it may be best to do the backup/restore as this gives you the option of recreating the same folder structure at the destination location. If folder structure is no concern (that all files can just go to a single folder because you are using Albums instead), then the File > Copy/Move to Removable Drive command would be easiest. Just select the Move option and then choose your Network drive as the Destination Drive, use the Browse button to move the files to a specific folder on that drive.

Maybe you are looking for

  • Problems with webcamming...

    The camera itself works, I can open the program, take pictures and make videos, but when I try to use it with MSN or AIM messengers it gives me an error saying that there is no webcamera detected. It is not just this one either, I've tried another an

  • Linking Custom Document Properties to SharePoint

    We currently have a Microsoft Office Add-in that, among other things, reads and writes Custom Document Properties. Our add-in includes a user-dialogue through which these values are captured and subsequently displayed within the document. We now have

  • Ipod unable to upload

    I plugged my ipod into my computer and I went through the same process I always do when I wish to put songs and videos on it. Unfortunately my songs and videos are no longer uploading and instead the ipod flashes these words. "The Ipod 'Owner's Ipod'

  • Downloaded OS ZIP files seems to be corrupted!

    I've downloaded the installation CD and CD 1 zip file from US west and east site but it doesn't seems to be workable. I'm unable to open the ZIP files. The files seems to be corrupted. Even after I repaired those Zip files, I'm unable to unzip it. Ca

  • Zen DLU vs AD Domain

    I'm working on a situation which maybe common these days, but I'm looking for clarification. We're using Zen 6.5, users with DLU policies logging into XP clients and Nwclient 4.9.1 We have used DLU to manage local workstation accounts and it works we