Offline editing in mail (IMAP)

Not sure if I have something wrong in one of the mail settings but I cannot edit my mail (file/delete read mail) if I don't have a net connection, say for instance on a plane. I'm using a third party IMAP mail service, not an exchange server but that shouldn't matter. Anyone out there having the same issue? If this is normal it's really going to make it tough to leave my MacBook pro home in my next trip. Airplane time is perfect for inbox cleaning....

Shaun,
I realize that this will probably not help you doing HD editing, but I've been using a couple of 1.5TB IEEE1394b (800) externals, and editing SD. I had planned on just using these for more storage, but when I put PP on the laptop I was limited to 3x 200GB for the internal HDD space. I began doing a few projects using these and found, to my surprise, that they did extremely well.
Along those lines, if you have a PCI slot in your machine, an eSATA card can hook into a SATA array, that can be configured in all sorts of ways, depending on the array's controller card.
Unfortunately, I do not know of any way to do true off-line editing in PP.
Hunt

Similar Messages

  • SMTP offline when adding Yahoo IMAP settings in Mail. Ports are correct as is password. Suggestions as to the problem?

    SMTP "offline" indicated under Mail/Preferences/Accounts for Yahoo IMAP, when adding Yahoo IMAP settings in Mail. Ports are correct as is password. Suggestions as to the problem? Latest OS with patches...
    I can log into Yahoo via URL, so Mail should work as well.

    foursmson wrote:
    SMTP "offline" indicated under Mail/Preferences/Accounts for Yahoo IMAP, when adding Yahoo IMAP settings in Mail. Ports are correct as is password. Suggestions as to the problem? Latest OS with patches...
    Run Connection Doctor, what does it say?
    I can log into Yahoo via URL, so Mail should work as well.
    Nope, no correlation between them (other than password)

  • Offline Editing in PC Suite

    I have one Nice Suggestion for the PC Suite which saves lot of time, that is offline editing of the contacts.
    If we can make the offlie contacts / new groups on pc than it saves lot of times as it can be synchronized later on pc to mobile.
    Thanks
    Moderator Note: E-mail removed
    Message Edited by kenken on 02-Jan-2009 12:36 PM

    Shaun,
    I realize that this will probably not help you doing HD editing, but I've been using a couple of 1.5TB IEEE1394b (800) externals, and editing SD. I had planned on just using these for more storage, but when I put PP on the laptop I was limited to 3x 200GB for the internal HDD space. I began doing a few projects using these and found, to my surprise, that they did extremely well.
    Along those lines, if you have a PCI slot in your machine, an eSATA card can hook into a SATA array, that can be configured in all sorts of ways, depending on the array's controller card.
    Unfortunately, I do not know of any way to do true off-line editing in PP.
    Hunt

  • Two Apple Mail imap accounts, but can never include 2nd account in REPLY ALL

    Hi. I have two Apple Mail imap accounts. One for me and one for my boss. The problem is, if I receive an email in which my boss is cc'd and I then click on REPLY ALL, Mail never includes my boss's email address and I have to manually type it in. Is there anything I can do to fix this? Thank you.

    Open Mail>Preferences>Accounts, scan down to the entry 'Outgoing Mail Server (SMTP)', click on the dropdown and select Edit SMTP Server List and verify that each account has the correct SMTP server set.
    Then close it
    Once you have verified that the servers are set correctly check the box that says 'Use only this server' for each of the accounts.

  • Java.lang.NoSuchMethodException: com.sun.mail.imap.IMAPStore.

    All:
    I have completed the following:
    1. Downloaded the JavaMail 1.4.2 API.
    2. From this downloaded API I had extracted the mail.jar file (timestamp 2009-02-26 13:28) to my C:\Program Files\Tomcat 6.0\lib directory
    3. Downloaded the jaf-1_0_2-upd2 API
    4. From this downloaded API I had extracted the activation.jar file (timestamped 2005-05-07 21:14) also to my C:\Program Files\Tomcat 6.0\lib directory.
    In Eclipse I have created a simple JSP page that calls a POJO that is to read a particular email box using IMAP. In this POJO I have code to set up the Properties, Session and Store objects as such:
    Line 1 Properties properties = System.getProperties();
    Line 2 properties.put("mail.from", "[email protected]");
    Line 3 properties.put("mail.debug","true");
    Line 4 session = Session.getDefaultInstance(properties, null);
    Line 5 session.setDebug(debug);
    Line 6 printData("About to get store object...");
    Line 7 store = session.getStore("imap");
    In eclispe, I click "Debug on Server" and Tomcat starts, begins to display my JSP and then I am dropped on the line of code in my POJO where I set a breakpoint (Line 1). Now I single step through the code. The code throws the following execption when it executes line 7 of the above code :
    (Line 6 ==>) About to get store object...
    DEBUG: getProvider() returning javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc]
    java.lang.NoSuchMethodException: com.sun.mail.imap.IMAPStore.<init>(javax.mail.Session, javax.mail.URLName)
         at java.lang.Class.getConstructor0(Unknown Source)
         at java.lang.Class.getConstructor(Unknown Source)
         at javax.mail.Session.getService(Session.java:782)
         at javax.mail.Session.getStore(Session.java:574)
         at javax.mail.Session.getStore(Session.java:536)
         at javax.mail.Session.getStore(Session.java:515)
         at emailTest.readEmails.processMail(readEmails.java:62)
         at emailTest.readEmails.<init>(readEmails.java:24)
         at org.apache.jsp.emailTest_jsp._jspService(emailTest_jsp.java:94)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
         at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
         at java.lang.Thread.run(Unknown Source)
    There are no jar files defined in my project's classpath. The only jar file found in the project is in the WEB-INF\lib folder wherein I have a jndi.jar (timstamp 5/5/2009 8:10AM) file.
    I put the activation.jar file and the mail.jar file in my Tomcat.6\lib folder according item 4 of the JavaMail Sessions section of the Apache Tomcat JNDI Resources HOW_TO found here: http://tomcat.apache.org/tomcat-6.0-doc/jndi-resources-howto.html
    Can anybody please tell me what I need to do to get around this error? Do I perhaps have the wrong versions of one or more jar files?
    FYI: I have also put these same two jar files in my projects classpath and still recevied the same exception. Because I am invoking a POJO from a JSP should these jar files be in my projects classpath in addition to the tomcat\lib directory, or should they only be in the projects' classpath?
    Thanks to all for your time in responding.
    Gary

    bshannon:
    Thank you for your resonse. Your response got me to thinking that my instance of Ecliplse that I had had running yesterday was behaving a little strangely so this morning I closed everything I had running on my workstation and closed down the machine and rebooted. When I finally opend up Eclipse again and ran my JSP program calling my POJO, the code no longer threw the exception. Apparently Eclipse can have its tempermental moments.
    Also, let it be known that while everything is working for me now, I performed a small experiment. I moved the activiation.jar and mail.jar from my project\WEB-INF\lib folder and put them in the the C:\Program Files\Tomcat 6.0\lib directory. Then, when I ran my program I once again recieved the java.lang.NoSuchMethodException error. When I moved these jar files back from the Tomcat diretory to my project\WEB-INF\lib directory, the program worked just fine.
    Thanks again
    Gary

  • Can't delete or edit a Mail account that is unable to connect and it keeps notifying me

    Can't delete or edit a Mail account that is unable to connect and it keeps notifying me and asking for password. Macbook Pro with Yosemite. If I highlight the account and go to Mailboxes, "Edit smart mailbox" is greyed out. Delete the mailbox is an option, but the mailbox just doesn't go away and no error message displayed. Tried Mail/Preferences/Accounts, highlighting account and using minus sign, it tells me the account is shared by other applications and gives me an option to go to Internet Accounts. At Internet Accounts, the only mail account showing is iCloud. Meanwhile, the pesky Mail icon is jumping around the bottom of my screen.
    Can anyone help?

    Did you ever find a fix for this? Mine is doing exactly the same thing, even with 2.01 - I hoped that might fix it. I'd rather not have to reset and erase the whole phone.

  • Offline editing in Premiere CS6

    Hi!
    I'm thinking about to edit a feature film in Premiere putting together all the episodes of my webserie. It's an action webserie and has a lot of cuts. It is in H.264 from 7d so is very difficult to play in real time.
    Are there any way to make proxies of the sequence for a more fluid edit and reconnect later with the original files (as you can do in Avid or FCPX)?

    Yes indeed!
    But you will have to use the fonction "replace with" to files one by one. Then it will relink the low res files to HD files into your timeline.
    Denis
    Sent from my iPad.
    Le 31 mai 2013 à 16:20, JF_Calero <[email protected]> a écrit :
    Re: Offline editing in Premiere CS6
    created by JF_Calero in Premiere Pro - View the full discussion
    Hi Denis, thanks for your help.
    Yes, right now I have one of the last MacBook Pro (no retina) but only with 4Gb of RAM. But I originally edit the series in my Macpro (with 24Gb and quadro 4000) and the action sequences still had problem to play well in H.264.
    My problem is that I have every episode already edit, although I'll probably change it when I mix all together.
    So, I think in this solution following your advice:
    •Make a Project manager of the sequences to one folder.
    •Batch transcode the resulting clips to a proxy version in another folder, with different name but maintaining the original name of the clips
    •Relink the sequences to the new ones
    In this way I can easily switch from offline to online version, right?
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5368172#5368172
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5368172#5368172
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5368172#5368172. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Premiere Pro by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • How to enable multiple check-out and check-in for offline editing (sharepoint 2010)

    I have  a SharePoint site where I am using check-in check out feature for one of 'Project' document library.
    By default SharePoint supports single document to be checkout for offline editing (when i click on checkout, SP ask for 'Use local draft option' for offline editing), if I select that check box, it take a local copy for offline editing in my 'SharePoint
    Draft' folder.
    but when I try to check-out multiple files from 'Project' document library, it does not show any form for confirmation, as shown above (use 'Local draft option') and files get checked out on server it self, but I didn't find any local copy in  'SharePoint
    Draft' folder. mean sharepoint does not support multiple file check-out feature for offline editing.
    Please suggest if we can check out multiple files for offline editing in sharepoint 2010.
    Thanks

    Sagar, Thanks for reply, but none of the link is useful.
    These all links talk about the check-in check-out feature, but my issue is that, when I do select multiple files for checkout Draft’s dialog
    box does not appear and offline copy of files is does not created. how to fix that issue.

  • Com.sun.mail.imap.IMAPFolder close

    Hi everyone,
    We are using BMC Remedy Email Engine with javamail function.
    Why is the message of ''com.sun.mail.imap.IMAPFolder close' message is indicated in stderr.log file' indicated? BMC and we don't know the reason at all. If someone knows, could you please teach us the error cause?
    The detail is below:
    2008/10/07 1:16:10 com.sun.mail.imap.IMAPFolder close
    SEVERE: A6 NO CLOSE Block size illegal for BPOOL.
    javax.mail.MessagingException: A6 NO CLOSE Block size illegal for BPOOL.;
    nested exception is:
         com.sun.mail.iap.CommandFailedException: A6 NO CLOSE Block size illegal for BPOOL.
         at com.sun.mail.imap.IMAPFolder.close(IMAPFolder.java:1003)
         at com.sun.mail.imap.IMAPFolder.close(IMAPFolder.java:935)
         at com.remedy.arsys.emaildaemon.ReceiverModule.terminateIncommingMailbox(ReceiverModule.java:1837)
         at com.remedy.arsys.emaildaemon.ReceiverModule.doWork(ReceiverModule.java:357)
         at com.remedy.arsys.emaildaemon.ThreadBase.run(ThreadBase.java:268)
         at java.lang.Thread.run(Unknown Source)
    Caused by: com.sun.mail.iap.CommandFailedException: A6 NO CLOSE Block size illegal for BPOOL.
         at com.sun.mail.iap.Protocol.handleResult(Protocol.java:294)
         at com.sun.mail.iap.Protocol.simpleCommand(Protocol.java:316)
         at com.sun.mail.imap.protocol.IMAPProtocol.close(IMAPProtocol.java:926)
         at com.sun.mail.imap.IMAPFolder.close(IMAPFolder.java:1000)
         ... 5 more
    Regards,
    NAKAI

    Hi,
    I'm experiencing a quite similar problem in our BMC Remedy Email Engine. IMAP mail integration that has been working for a long time has suddently quit working and now producing error message as below every second instead. NAKAI - did you find any solution to your problem? Anyone else that has experienced any similar?
    Thanks in advance,
    Daniel
    A94819 NO The request is not supported.;
    nested exception is:
         com.sun.mail.iap.CommandFailedException: A94819 NO The request is not supported.
    javax.mail.MessagingException: A94819 NO The request is not supported.;
    nested exception is:
         com.sun.mail.iap.CommandFailedException: A94819 NO The request is not supported.
         at com.sun.mail.imap.IMAPMessage.loadEnvelope(IMAPMessage.java:1063)
         at com.sun.mail.imap.IMAPMessage.getMessageID(IMAPMessage.java:428)
         at com.remedy.arsys.emaildaemon.ReceiverModule.checkAndSkipStoredMessages(ReceiverModule.java:397)
         at com.remedy.arsys.emaildaemon.ReceiverModule.doWork(ReceiverModule.java:275)
         at com.remedy.arsys.emaildaemon.ThreadBase.run(ThreadBase.java:268)
         at java.lang.Thread.run(Unknown Source)

  • "Offline editing" only linking the first video?

    Hello. I'm trying the called "offline editing", which is making high resolution files offline and linking them to lower resolution versions. The problem is: I make the files offline, go to link them and Premiere asks for the first file of the list (which is normal as I've seen on tutorials) but then it only links to this first file - so only this first file is linked to its lower resolution version, remaining the other ones I selected as original. I've seen a couple of videos showing this process and it doesn't seem too complicated so I don't know what I could be doing wrong.
    All the lower files are with the exact name and format as the original ones, only on a different folder. I'm working on Premiere CS6.

    Hi,
    I am so awlfully sorry. I was really careless in how I miss that method...
    Thanks....
    --Chung                                                                                                                                                                                                           

  • Mail - IMAP folders not showing up in folder list

    I have several mac mail imap folders and a few of them are not showing all imap folder - yet I can use move to folder to move emails to that folder.  Any ideas?

    Check on the IMAP settings (Gmail.com) that Pop is disabled.
    It should be in the IMAP/Mail forwarding section.
    When it is enabled, folders do not show up in mac mail

  • Is it possible to perform "Offline Editing" in Lightroom?

    Is it possible to perfom "Offline Editing" in Lightroom? I use the word "offline" like one would in video editing, to mean that I would use low resolution versions of my images to perform super-fast edits and stylizations. I don't mean that the images would actually be missing when I say "offline." The workflow process would go something like this:
    I would use Photoshop's Image Processor to quickly make low resolution copies of all of the images in a folder. Then I would send that (much smaller) folder of images to another person (in another city) to edit and stylize on their machine, using their own copy of Lightroom. Once they have completed their work, they would send me their decision data, which I would bring into my copy of Lightroom, to be rejoined with the high resolution versions of the images.
    Please tell me this will work. I'm trying to figure out a way to distribute my rapidly growing workload among multiple persons, while maintaining a master catalog of high resolution files.

    LR stores it's edits in the catalog. It can also store the edits in the file as xmp data or as sidesar files in the case of propitiatory formats. Makes no difference to this process what the original format is, in the case of JPG the xmp data is stored in the file. LR uses previews it builds of the files to show you what these edits will look like when applied to the files. These edits are only applied to a new file created on export. The original file is left untouched. LR is primary designed for editing RAW files or 16 bit tiffs, rather than JPGs. It can of course edit JPGS but although LR is non destructive during editing when the changes are applied to the JPG file on export sever deterioration of the file will occur. JPG is a finished format and really shouldn't be edited if it can be avoided.
    Off line editing in LR relates to editing image that are not actually connected to the catalog at the time. Such as being on an external disk that is no longer plugged into the computer. LR can work this way but new images cannot be exported from the catalog without the originals being connected.
    You can edit "smaller" versions of an image if you want and then copy the changes to "larger" files. There would be no advantage however in doing this in LR and those changes may be completely different given that the files themselves are different. Someone else can work on original files in a separate catalog and either export the files as a catalog which you can import or save the changes to the files themselves which you can then read into your catalog using the read metadata from file command.

  • Unable to create or edit AD (mail) contacts in address book

    Hi!
    I recently imported quite a list of contacts from an old CRM application into Exchange. All entries are nicely created in domain.local\company\location\Contacts. All fields are visible in Outlook under All Address Lists\All Contacts.
    As we have a small company, just a few users, I want to give most of them the rights to create and update entries in the All Contacts folder, just as they were used to in the old app.
    I started by creating role groups following this article:
    http://blogs.technet.com/b/rmilne/archive/2013/08/07/creating-rbac-role-to-delegate-contact-management.aspx
    I created an Admin Role group named Contact Administration, which contains the required Members, and I assigned two role groups to this group: Contact_Management, which is based on the Mail Recipient Creation parent group, and Contact_Management_2,
    which is based on the Mail Recipient parent group. The Write Scope is: domain.local\company\location\Contacts.
    Because this didn't result in anyone being able to update the contacts, I also created a group in Active Directory and delegated control on the contacts OU to this group, even though I think this doesn't add to the desired result (as it indeed didn't).
    What am I missing here? Any help will be greatly appreciated!

    Hi
    As per the information and details provided by you, to create or edit a mail contact in address book, please follow these steps: -
    Use the Shell to create a contact
    This example creates mail contact for Debra Garcia in Exchange Server 2013
    New-MailContact -Name "Debra Garcia" -ExternalEmailAddress [email protected] -OrganizationalUnit Users
    This example creates a mail contact for Alan Shen in Exchange online.
    New-MailContact -Name "Alan Shen" -ExternalEmailAddress [email protected]
    3.     This example mail-enables an existing contact named Karen Toh in Exchange Server 2013.
    Enable-MailContact -Identity "Karen Toh" -ExternalEmailAddress [email protected]
    To add a contact: -
    You can use the EAC to change selected properties for multiple mail contacts. When you select two or more mail contacts from the contacts lit in the EAC, the properties that can be bulk edited are displayed in the Details pane. When you change one of these properties, the change applies to all selected recipients.
    When you bulk edit mail contacts, you can change the following properties areas: -
    ·        Contact Information: - Change shared properties such as street, postal code, and city name.
    ·        Organization: - Change shared properties such as department name, company name, and the manager that the selected mail contact or mail users report to.
    I hope this information will be helpful for you.
    Thanks and regards
    Shweta@G

  • DVCPRO HD 3 stream multiclip - computer too slow, offline edit? How?

    Of all my woes trying to get this project edited, I finally figured out solutions for a few problems I was having (preventing me from starting the edit). Now, let's assume I have everything ready...
    I have 3 angles, all DVCPRO HD. When I multiclip and place in timeline, keep getting dropped frames on playback.
    I've tried reducing RT as low as quarter framerate and low playback quality but I still get mixed results.
    Is there a way I can do an offline edit using multiclips then online the footage once my cuts are complete? How?
    Thanks!
    Oh duh - 17" Intel iMac (1st gen of Intels) 1.83Ghz, 2GB RAM, 1TB GRAID2, FCP 6.0.2

    FANTASTIC.
    Great, quick article.
    Let's give it a try...
    AAHHHH! It works! Ha!
    Ok (and I know you read a thousand threads every day), as noted in another post of mine, I have the nightmare of transcoding other footage taken from different cameras (at different resolutions and different compression [both hdv, one is 720p ftg, other is 1080i])
    The DVCPRO HD is native 59.94
    When I recompress for offline, I get the warning dialog about framerate of preset to be used mismatching footage I've selected. The new project/sequence will be set to OfflineRT HD (Photo JPEG) 29.97 The media I'm about to recompress, again, is 59.94 The offline clips retain the 59.94 framerate.
    Edit into sequence, prompt to change sequence settings to match clip settings. I edited the clip and 3 stream (!!) multiclip into the offline sequence with the sequence set to 29.97 or 59.94 I see no noticeable difference in the look of the footage. I don't have an external monitor to test with but I imagine it wouldn't make a difference.
    So what's my point? Oh, uhh, yeah. So the other two "footages"...Before I begin the edit, what should they be transcoded to? My guess:
    -Transcode HDV footage to DVCPRO HD 720p60 in Compressor
    -Results in 59.94
    -Put the entire "online" media into master project
    -Offline all footage for realtime project
    -Edit offline in 59.94 timeline
    -Did I mention the purpose of transcoding to match DVCPRO HD is so I can multiclip?
    -Complete edit in offline project
    -Online it.
    A few notes...
    -I don't have HDV to test w...oops, wait, I do. And, how convenient, it's 1080i! Nonetheless, I just did the Compress routine with some SD footage, looked like hairy sh...you know. But hey, that's what you'd expect. Mainly, you can see atrocious field separation especially on motion. Either way...
    Just converted the 1080i ftg to DVCPRO HD and from master to transcode, they look very similar. There is a SLIGHT blur on the transcoded ftg but it will suffice (it'll have to)
    -I offlined the transcoded 1080i-720p, looks like garbage but who cares? It's visible and plays back RT! Errr...when it's on its own in the timeline. Multiclip'd this ftg with 2 other DVCPRO HD offlined and, once in timeline, multiclip isn't playing back at all. Canvas shows the video, viewer doesn't. Each time playhead is stopped, viewer updates with current frames of each multiclip element. Yes, sync is set to open.
    Also, canvas doesn't update when cut to alternate angle, continues showing the previous footage AND IT DOES register the cuts but canvas doesn't update. UGH.
    -Restarting FCP. That didn't do it. The RT popup also doesn't give an option for multiclip playback. So...ahhh sugar. Found it.
    -The sequence needed to be set to 29.97, not 59.94
    -Now the question is, how will this affect the online? What will I online back to? Huuuuuhhhhh.....
    Well, I did it anyway and set it all back how it was, the sequence framerate is 29.97 - Nothing looks off or weird after a render. HOWEVER...
    -Does this mean I am doing it right?? Should the online be 59.94?
    OK, I think I've babbled enough. Very close!!! Much closer than before, very helpful, thank you!

  • Mail imap sfr

    bonjour
    je souhaite configurer un compte mail imap du fournisseur SFR.
    Mail ne propose que la création d'un compte en pop. En modifiant le serveur de réception en imap.sfr.fr, cela ne fonctionne pas.
    Comment créer un compte en imap?

    Bonsoir,
    Sachant que SFR propose avant tout son webmail en POP, je crois (pas sûr, à vérifier) qu'il faut activer le mode IMAP depuis les préférences du webmail, comme dans Gmail ou sur Yahoo! Mail. Une fois l'IMAP activé, on peut configurer un client email pour se synchroniser en IMAP, avec le nom de serveur que tu mentionnes, et normalement le port 143 comme point d'entrée. Je n'ai pas d'adresse en sfr.fr pour tester...

Maybe you are looking for

  • I don't have my contacts, calendar, etc. on iCloud, how do I move them from MobileMe to iCloud?

    I had a MobileMe account. Now I have iCloud. But my contacts and calendar aren't synced on iCloud, I only have 1 contact, myself. Why isn't the account moving? I went to www.me.com/move , but it takes me to find my iPhone sign in, then I can get to i

  • Trackpad of MacBook Pro mid 2009 does not respond to the first click/tap

    Have the following problem and wasn't able to find any sollution here somewhere if I click on a link or choose a checkbox or do anything by clicking it does not work with the first click/tap and I have all settings right. a PRAM reset had no effect o

  • How can I get Abobe Bridge to Not save as a DW file?

    Everytime I make minor adjustments to a photo in Camara Raw within Adobe Bridge, it saves the edits in a DW (Dreamweaver) file next to that photograph. I have not changed any settings recently and don't know why it would start doing that all of a sud

  • IsNan() function

    Hi All, I would like to ask regarding the IsNan() function. How is it used and what is its output? I am using it in an if statement and cant seem to get a result. It only outputs #error in my report. I am using it in a matrix report which displays th

  • Transferring message between two Integration servers using th XI adapter

    Hello all, I have the following scenario: 1) Local SAP R3 sends an iDoc to a local Integration server (XI3.0) 2) The local IS transfers the iDoc to a remote IS (XI3.0) through HTTP. 3) The remote IS is supposed to send the iDoc to it's own SAP R3 sys