IMAP Subfolders Can't Be Accessed After Server Rebuild

I had to reinstall MOSXS 10.4 last night and after reconfiguring the server, I turned mail services on and ditto'd my backup of var/spool/imap back to /var/spool/imap and logged into my IMAP account using Entourage 2004.
The Inbox works correctly, but all subfolders appear to be broken. I told my IMAP account to get the complete folder list, and Entourage crashes. I went so far as to delete/recreate my account, and I can only see the basic folders with no subfolders (like my listserve archives, etc.) I can see the folders and mail in /var/spool/imap/users/(me)/(subfolders)/ and it's all there, but I can't seem to access it.
Any ideas? I'm sure I'm overlooking the obvious.

Most likely using ditto to backup/restore your files missed a few bits. Also /var/spool/imap is not enough, you also need the imap config directory (usually var/imap)
You probably need to reconstruct your mail database. You can use mailbfr to do this. http://osx.topicdesk.com/downloads/
Install it as desribed in the documentation and run it with mailbfr -f
You will loose your read/unread flags though.
Alex

Similar Messages

  • LUN can't be accessed after move it to another Hyper-V Failover Cluster without "remove from cluster shared volumes" on the original cluster

    Hi all,
    I have a old cluster, let's call it cluster01, and a new cluster, cluster02. There is a LUN attach to cluster01 as a CSV volume. I forgot to  "remove from cluster shared volumes" in Failover Cluster console, then power off the cluster01 and
    attach the LUN to the cluster02. Now the LUN can't be accessed in cluster02, it show as a RAW disk. I tried to attach the LUN to it's original cluster cluster01 but can't read it too.
    Is there any way to get it back?

    Hi Zephyrhu,
    Can you run Clear-ClusterDiskReservation powershell cmdlet and see that helps?
    http://technet.microsoft.com/en-us/library/ee461016(WS.10).aspx
    Thanks,
    Umesh.S.K

  • "The home folder...isn't located in the usual place or can't be accessed" after 10.9 AD bind.

    Okay a little backstory here because I'm trying to eliminate or identify what I feel might be a bug in OS X Mountain Lion and Mavericks.  Just FYI, I'm not our institution's AD admin, I just have rights to bind and query for this and that, but I can't make changes or really investigate our AD domain server/s:
    So we're an educational institution with lots of adjuncts that come and go each year.  Recently in August, I had about 5 cases where these adjuncts couldn't log in because of a cryptic "login failed" error.  I have my macs setup to create mobile accounts without confirmation.  I don't want ANY syncing going on just local user accounts created, but something in the profile creation process demands access to their network home folder.  Well these 5 users were brand spanking new and somehow didn't have permissions to their own network home folders that everyone else hasn't had a problem with before.  I had our admins fix the permissions, and they were able to login thereafter.  Our admins are still looking for what might have caused this, but still don't know....
    Recently I've been testing the same AD bind script I've always used on Mavericks.  It's a simple bash "dsconfigad" customized for our institution.  It seems to work successfully but on the login screen I get no usual "arrow" that allows me to back out and click "Other" and login to AD.  I reseated the Ethernet cord and checked the AD configuration in Directory Utility - it was all set correctly as per the script parameters.  When I clicked OK and exited out to the login screen, the Other option was working correctly.  I was able to login with my own credentials just fine.
    I needed to tweak my image a little so I wiped and reloaded the machine with the new image (nothing relevant to binding and users was changed).  Got the same "no arrow" issue and tried the same steps, which again worked after some monkeying around.  I tried to login with my credentials - failed.  Now I get "The home folder for user 'my username' isn't located in the usual place or can't be located."  I went into a local user admin account and tried to add my home folder manually, nogo.  I logged onto a windows machine and tried to mount the same home folder in Windows - access denied - this is the SAME type of thing that ended up happening to my adjuncts.  I don't know if they are related but it's certainly a strange coincidence.
    How could testing AD binds change my home folder permissions, or possibly even corrupt the folder altogether?  The network share/home folder that our macs smb communicate with as per the bind settings are on a windows server (to the best of my knowledge).  My guess previously with the adjuncts error is that despite the fact that I don't need or want the profiles created to sync, the default options turns this on for mobile accounts even though it doesn't select any actual folders for syncing, but because it still tries some sort of "handshake" or something initially, first logins fail without network home folder permissions.  Now it seems like something in the initial profile creation process might actually be corrupting the network home folder or changing its permissions.
    I would post the bind script but I'm not sure it's relevant, as another mac admin in a different area ran into the same error with one of his new users and he bound manually, not with a script.
    I'm kind of new to this sysadmin stuff, so does anyone have any ideas or suggestions to track down the cause of this and possibly fix it?  The network share admin can fix my permissions, but if I could break it when it was working once, I foresee this happening again.

    Here's the script I used previously that is not connecting to AD "completely" that causes the errors mentioned (I'm replacing institution info with "xxx"):
    echo -n "This computer needs to be renamed and bound to Active Directory.  Please enter the XXX Inventory Number from the affixed XXX label on the machine: "
        read userinput
        echo -n "Enter the XXXAdmin password (you will still be asked to enter this for system configuration changes): "
        read -s xxxpassword
        scutil --set ComputerName $userinput
        scutil --set LocalHostName $userinput
    # Active Directory Bind Script For OS X Client
        # Modified by Wade Wei according to previous popular bind script
        # Adapted for xxx by xxx
        echo "Binding to Active Directory…"
        echo -n "Enter AD admin username: "
        read adusername
        echo -n "Enter AD admin password (please wait after password submitted, do not press any keys): "
        read -s adpassword
        #Basic parameters
        computerid=$userinput
        fqdn="ad.xxx.edu"
        username=$adusername
        password=$adpassword
        #Advanced parameters
        alldomains="enable"
        localhome="enable"
        protocol="smb"
        mobile="enable"
        mobileconfirm="disable"
        useuncpath="enable"
        user_shell="/bin/bash"
        admingroups="domain admins,enterprise admins,xxx,xxx"
        namespace="domain"
        packetsign="require"
        packetencrypt="require"
        localuser="XXXAdmin"
        localpassword=$xxxpassword
        # Bind to AD
        echo "Binding to AD - do not interrupt…"
        dsconfigad -add $fqdn -username $username -password "$password" -computer $computerid -force -packetencrypt $packetencrypt -localuser $localuser -localpassword $localpassword
        sleep 5
        #Configure advanced options
        echo "Configuring AD for Mac OS X…"
        dsconfigad -localuser $localuser -localpassword $localpassword -alldomains $alldomains -localhome $localhome -groups "$admingroups" -mobile $mobile -mobileconfirm $mobileconfirm -namespace $namespace -packetsign $packetsign -useuncpath $useuncpath -protocol $protocol -shell $user_shell -nopreferred
    Can anyone tell me if I need to update the script for Mavericks, and how?  Or should this be working and the bug is in Mavericks itself?

  • OWA can't be accessed after moving data files to new volume

    SBS 2008  Exchange 2007
    Used the Move Files wizard in SBS Console to move Exchange files off of system drive to a storage drive.  Wizard said move was successful.  Opend Exchange management Console and verified path to files under Server/Mailbox.
    I get this error and the details when trying to access OWA. Server and user names have been changed to protect the innocent.  :)
    Can anyone offer a suggestion or solution?
    Outlook Web Access could not connect to Microsoft Exchange. If the
    problem continues, contact technical support for your
    organization.
     error details
    Show details
    Request
    Url: https://remote.contoso.com:443/owa/default.aspx
    Exception
    Exception
    type: Microsoft.Exchange.Data.Storage.ConnectionFailedTransientException
    Exception
    message: Cannot open mailbox /o=First
    Organization/ou=Exchange Administrative Group
    (FYDIBOHF23SPDLT)/cn=Recipients/cn=JohnDoe.
    Call stack
    Microsoft.Exchange.Data.Storage.ConnectionCachePool.OpenMailbox(String
    serverDn, String userDn, String mailboxDn, Guid mailboxGuid, Guid mdbGuid,
    Object identity, ConnectFlag connectFlag, OpenStoreFlag openStoreFlag,
    CultureInfo cultureInfo, String clientInfoString, Boolean secondTry)
    Microsoft.Exchange.Data.Storage.ConnectionCachePool.OpenMailbox(String
    serverDn, String userDn, String mailboxDn, Guid mailboxGuid, Guid mdbGuid,
    Object identity, ConnectFlag connectFlag, OpenStoreFlag openStoreFlag,
    CultureInfo cultureInfo, String clientInfoString, Boolean secondTry)
    Microsoft.Exchange.Data.Storage.ConnectionCachePool.OpenMailbox(String
    serverDn, String userDn, String mailboxDn, Guid mailboxGuid, Guid mdbGuid,
    Object identity, ConnectFlag connectFlag, OpenStoreFlag openStoreFlag,
    CultureInfo cultureInfo, String clientInfoString)
    Microsoft.Exchange.Data.Storage.MailboxSession.Initialize(LogonType
    logonType, ExchangePrincipal owner, DelegateLogonUser delegateUser, Object
    identity, OpenMailboxSessionFlags flags)
    Microsoft.Exchange.Data.Storage.MailboxSession.CreateMailboxSession(LogonType
    logonType, ExchangePrincipal owner, DelegateLogonUser delegateUser, Object
    identity, OpenMailboxSessionFlags flags, CultureInfo cultureInfo, String
    clientInfoString)
    Microsoft.Exchange.Data.Storage.MailboxSession.Open(ExchangePrincipal
    mailboxOwner, WindowsPrincipal authenticatedUser, CultureInfo cultureInfo,
    String clientInfoString)
    Microsoft.Exchange.Clients.Owa.Core.OwaWindowsIdentity.CreateMailboxSession(ExchangePrincipal
    exchangePrincipal, CultureInfo cultureInfo)
    Microsoft.Exchange.Clients.Owa.Core.UserContext.Load(OwaContext
    owaContext)
    Microsoft.Exchange.Clients.Owa.Core.RequestDispatcher.CreateUserContext(OwaContext
    owaContext, UserContextKey userContextKey, UserContext& userContext)
    Microsoft.Exchange.Clients.Owa.Core.RequestDispatcher.PrepareRequestWithoutSession(OwaContext
    owaContext, UserContextCookie userContextCookie)
    Microsoft.Exchange.Clients.Owa.Core.RequestDispatcher.InternalDispatchRequest(OwaContext
    owaContext)
    Microsoft.Exchange.Clients.Owa.Core.RequestDispatcher.DispatchRequest(OwaContext
    owaContext)
    System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
    System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&
    completedSynchronously)
    Inner Exception
    Exception type: Microsoft.Mapi.MapiExceptionLogonFailed
    Exception
    message: MapiExceptionLogonFailed: Unable to open
    message store. (hr=0x80040111, ec=-2147221231) Diagnostic context: Lid: 18969
    EcDoRpcExt2 called [length=981] Lid: 27161 EcDoRpcExt2 returned
    [ec=0x0][length=132][latency=15] Lid: 23226 --- ROP Parse Start --- Lid: 27962
    ROP: ropLogon [254] Lid: 17082 ROP Error: 0x80040111 Lid: 26937 Lid: 21921
    StoreEc: 0x80040111 Lid: 27962 ROP: ropExtendedError [250] Lid: 1494 ---- Remote
    Context Beg ---- Lid: 26426 ROP: ropLogon [254] Lid: 22787 Error: 0x0 Lid: 13032
    StoreEc: 0x8004010F Lid: 59409 Lid: 45073 Lid: 11173 StoreEc: 0x80040111 Lid:
    22970 Lid: 8620 StoreEc: 0x80040111 Lid: 1750 ---- Remote Context End ---- Lid:
    26849 Lid: 21817 ROP Failure: 0x80040111 Lid: 26297 Lid: 16585 StoreEc:
    0x80040111 Lid: 32441 Lid: 1706 StoreEc: 0x80040111 Lid: 24761 Lid: 20665
    StoreEc: 0x80040111 Lid: 25785 Lid: 29881 StoreEc:
    0x80040111
    Call stack
    Microsoft.Mapi.MapiExceptionHelper.ThrowIfError(String message,
    Int32 hresult, Int32 ec, DiagnosticContext diagCtx)
    Microsoft.Mapi.ExRpcConnection.OpenMsgStore(OpenStoreFlag
    storeFlags, String mailboxDn, Guid mailboxGuid, Guid mdbGuid, MapiStore
    msgStorePrivate, String& correctServerDn, ClientIdentityInfo
    clientIdentityAs, String userDnAs, String applicationId, CultureInfo
    cultureInfo)
    Microsoft.Mapi.ConnectionCache.OpenMapiStore(String mailboxDn, Guid
    mailboxGuid, Guid mdbGuid, ClientIdentityInfo clientIdentity, String userDnAs,
    OpenStoreFlag openStoreFlags, CultureInfo cultureInfo, String applicationId)
    Microsoft.Mapi.ConnectionCache.OpenMailbox(String mailboxDn, Guid
    mailboxGuid, Guid mdbGuid, WindowsIdentity windowsIdentityAs, String userDnAs,
    OpenStoreFlag openStoreFlags, CultureInfo cultureInfo, String applicationId)
    Microsoft.Exchange.Data.Storage.ConnectionCachePool.OpenMailbox(String
    serverDn, String userDn, String mailboxDn, Guid mailboxGuid, Guid mdbGuid,
    Object identity, ConnectFlag connectFlag, OpenStoreFlag openStoreFlag,
    CultureInfo cultureInfo, String clientInfoString, Boolean secondTry)

    Hi Esyxx,
    Based on your description, I understand that you move Exchange Server Data to a new volume. And then encounter
    issue when access OWA. If anything I misunderstand, please don’t hesitate to let me know.
    à
    I get this error and the details when trying to access OWA.
    Would you please let me know whether all users encounter the same issue? Or just some specific users? After
    moving, did you
    manually mount the mailbox database? If access mailbox via Outlook, will still encounter any issue?
    In addition, please run Exchange BPA and
    SBS BPA, then fix all that they can find and monitor the result.
    By the way, I noticed that you post screenshot here. However, pictures seems to be damaged. Would you please
    provide the screenshot again or upload it in
    OneDrive, then post link here? Thanks for your understanding.
    Regarding to moving Exchange Server Data, please also refer to following article and check if can help you.
    Move the Exchange Server Data
    Hope this helps.
    Best regards,
    Justin Gu

  • Sharepoint 2010 Can't be accessed after becoming a domain controller

    Hi! I have installed Sharepoint 2010 on Windows server 2008 R2, which is was working fine until I became a domain controller. My computer name was changed to "originalname.mydomain.com" . Then,
    I also renamed my original name to something else. So, the full name is completely new!
    I used all sort of available solutions, such as:
    Rename-SPServer [-Identity] <OriginalServerName> -Name <NewServerName>
    AND
    stsadm -o renameserver -oldservername <oldServerName> -newservername -<newServerName>
    using Powershell, but both are giving me this error:
    The '<' operator is reserved for future use.
    At line:1 char:40 + stsadm -o renameserver -newservername < <<<< DC.DAVOKA.COM> -oldservername <w
    in-eli768388rh>     + CategoryInfo          : ParserError: (<:OperatorToken) [], ParentContain
       sErrorRecordException     + FullyQualifiedErrorId : RedirectionNotSupported
    Moreover, all my SQL services are running.
    Thanks in advance!

    I would have though that running IIS on a domain controller is going to be full of problems, IIS by it's nature allows anonymous access, not something you want on a domain controller.  Unless you are seriously limited on hardware, I would keep them
    separate.
    Renaming SharePoint servers after installation also brings up a handle of problems, there are resources on Technet on how to do it as well as various posts in this forum, the over-riding recommendation is decide on the server names before you install and
    then stick to them.
    Check out these resources regarding installing SharePoint on a domain controller, looks like there are a few things to consider.
    Issues to consider when you install SharePoint Foundation 2010 or SharePoint Server 2010 on a Domain Controller
    Installing SharePoint 2010 on a Domain Controller

  • Can Not start Database after Server is restarted !!!!

    I am building a oracle Hyperion Essbase and planning sandbox on my laptop using VMware 9.0
    and 11gr2 as ny database.
    Once I complete the install and config, I am installing the essbase EAS client, once that is completed I have too restart the server
    once the Server is back up, the database is giving me the following Error:
    Database Instance: Hyperion
    Enterprise Manager is not able to connect to the database instance. The state of the components are listed below. Page Refreshed  Aug 31, 2013 2:19:45 AM EDT  
    Database Instance
    Host  localhost
    Port  1521
    SID  Hyperion
    Oracle Home  C:\app\Administrator\product\11.2.0\dbhome_1
    Listener
    Status  Down
    Host  localhost
    Port  1521
    Name  LISTENER
    Oracle Home  C:\app\Administrator\product\11.2.0\dbhome_1
    Location  C:\app\Administrator\product\11.2.0\dbhome_1\network\admin
    Details  TNS-12541: TNS:no listener 
    Agent Connection to Instance
    Status  Failed
    Details  ORA-12541: TNS:no listener (DBD ERROR: OCIServerAttach
    Change Status Details
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    SQL> Connected to an idle instance.
    SQL> SQL> ORA-00119: invalid specification for system parameter LOCAL_LISTENER
    ORA-00132: syntax error or unresolved network name 'LISTENER_HYPERION'
    Disconnected
    Database Instance: Hyperion
    Error Message
    The operation for starting up the database has failed. Click 'View Details' to see the error. You may have to perform a recovery.
    View Details
    Perform Recovery
    Enterprise Manager is not able to connect to the database instance. The state of the components are listed below. Page Refreshed  Aug 31, 2013 6:56:37 AM EDT
    Please advise

    Not clear what you are asking instruction i am following
    again I need a Database schema for Oracle Hyperion Shared Services
    I set up the database and config the Hyperion Essbase application
    but when I  restart the server the database gives me the above error
    Listener / Status  Down / Host  localhost
    and
    Agent Connection to Instance Status  Failed
    Details  ORA-12541: TNS:no listener (DBD ERROR: OCIServerAttach
    I manually went into the database instance and started the Listener
    but I can not start the database
    it is saying me to do a recovery ????
    Details
    SQL> Connected to an idle instance.
    SQL> SQL> ORA-00119: invalid specification for system parameter LOCAL_LISTENER
    ORA-00132: syntax error or unresolved network name 'LISTENER_HYPERION'
    Disconnected
    Database Instance: Hyperion
    Error Message
    The operation for starting up the database has failed. Click 'View Details' to see the error. You may have to perform a recovery.
    View Details
    Perform Recovery
    what can I do Please advise

  • Clients can't rejoin domain after server clean install

    Hello, I've got an issue with having client computers rejoin the domain after reinstalling the server software. Another post I read suggested saving the plist files to get the settings the same, but I need to reconfigure manually to eliminate some other problems we've been having.
    We've got an Xserve running 10.4.8 with a mix of XP and Tiger clients all authenticating with the server. Our XP clients have remote profiles converted to local and our Tiger clients use mobile accounts. Generally things were running OK, but we kept having some authentication issues and have SMB crashes. In reviewing our log files it was suggested that our Open Directory was messed up (probably during our upgrade from 10.3 to 10.4) and that a clean install was the best course of action. The server has been running 24x7 for over 3 years without any signifigant maintenance, so this seemed like a good idea.
    Everything was going great. I did the clean install and had DNS and DHCP configured and working, then started setting up Open Directory as the PDC and Windows Services as the Primary WINS. I had intended to recreate the user accounts because I didn't want to reintroduce problems by restoring the settings, however when I added one account and tested logging in on a XP machine it couldn't authenticate even though the domain name and user name was the same as before (short names too). On a whim, I moved the computer from the domain to WORKGROUP and then rejoined the (new) domain. Upon login it created a new roaming profile named user.domain instead of using the other account already there. On the XP client in accounts, the old profile showed up as unknown. I then went to a Mac and tried to log in and had similiar issues not finding the authenticating server.
    After pulling my hair out this evening and realizing that there was no way I was going to have the office operation in the morning, I did a full restore from backup and pretended like I hadn't just wasted my weekend. After I got the server running, I was able to get my client machines to see the domain again and all is as it was.
    Soooo, now the question is how do I create a clean installation with newly created user accounts and get the client computers to recognize the domain server as the same old one? Is there a hidden domain ID or something that is telling the client computers that it isn't the same domain or LDAP server? Any suggestions would be greatly appreciated.
    Thanks.
    xserve G4 & XRaid   Mac OS X (10.4.8)  

    Sorry, to clarify I did not want to use the archive & restore because I didn't want to reintroduce the errors I was trying to eliminate. I setup the Open Directory as a PDC from scratch and then ran into the client authtenication issue. In a desperate attempt to salvage the situation I did restore the previous settings which (A) didn't work and (B) may have made things worse because I already had created some groups and a few users and ended up with groups with duplicate IDs. That was when I scrapped everything and restored the disk from backup.
    Your idea of using export/import is a slightly different avenue. However, now that I'm thinking about it, I didn't even get far enough for the user profiles to be an issue because the client computers weren't even communicating with the server to get the list of users (the Macs log-in by selecting a user name from a list).
    Does export/import of a computer list work? I think I tried to import the computer list last night and the one I had only contained the Macs and these didn't preserve the MAC address info for some reason. I didn't have an export of the XP machines, but tried to manually add them to the list with no success.
    Thanks again for your help.

  • Clients forget MCX after server rebuild

    Hi everyone. I'm running Mac OS X Server 10.6.8 on an Xserve. The OD system is tied to an Active Directory server in a magic triangle setup, with the OD providing no Kerberos of its own. This was actually changed recently -- due to repeated errors and LDAP deafness, I tore the server down and rebuilt it, re-importing the computers and computer groups from Workgroup Manager. Seems to be humming along fine now.
    Except for one thing: The bound client machines, so far just Mac OS X 10.6.8, are starting to forget their MCX settings. For instance, we have a setting requiring a password on wake from sleep or screensaver, and one by one, I'm getting reports that this isn't happening.
    Re-binding the machines to the OD server seems to resolve the issue. I'm wondering if anyone can think of a way that might avoid this -- certainly it's a security problem to have the machines not following their security policy until I physically come by and update them.
    If anyone can think of a way around this, I would be very grateful!

    Hi
    This is an old issue and I have a feeling the answer is Time Machine is not supported using port trunking? If you disable the aggregate bond I would not be surprised if it started working?
    https://discussions.apple.com/thread/2131323?start=0&tstart=0
    This problem appears to have affected 10.5 Server only? Perhaps later versions of the Server don't have the problem?
    HTH?
    Tony

  • How can i access dmz server via public ip from inside?

    hi all !
    As shown in Figure,how can i access the server in dmz zone via public?
    i can access it via private ip 192.168.1.1 now,but i can't access it via 101.100.1.2.
    who can help me ?
    thank you !

    Hi,
    You would have to configure Static NAT from DMZ to INSIDE for the server in the same way you have done for DMZ to OUTSIDE.
    Basically in the following way for example
    object network DMZ-WEB
    host 192.168.1.1
    nat (dmz,inside) static 101.100.1.2
    This would enable your users on the "inside" to access the "dmz" server with the public IP address. And naturally only with the public IP address after this NAT.
    Hope this helps
    Please do remember to mark a reply as the correct answer if it answered your question.
    Feel free to ask more if needed
    - Jouni

  • Macbook pro can no longer access windows file share.  'This file server is available on your computer'

    Hi all,
    We have a consultant who uses a macbook pro to access the internet and a windows share within our network.  He has been accessing the internet and the windows share fine for over 4 weeks and overnight he can no longer access the internet or this windows share.  I have got the error down to a specific windows share which is actually a share on a DC hence the loss of internet.  When this user plugs in via ethernet he can view all network locations as expected and can access everyone succesfully bar this specific one.  Everytime he tries to access this share he gets the following error: 'This file server is available on your computer. Access the volumes and files locally'.  I have another macbook pro that can successfully access this share.
    I have tried renewing leases, browsing the network in finder, using 'cmd + k' all produce the same message.
    The user is running Mountain Lion
    Any ideas?
    Adam

    Find and delete the ~/Library/Preferences/com.apple.sidebarlists.plist file.  This is what keeps track of all your current server share mounts.  Maybe the file is corrupt or something.  Once you delete it, reboot the machine and then try again.  Don't empty the trash until you're sure everything works after the reboot.

  • Can't Access POP Server

    Hi
    Suddenly, I can't access my POP server. After years of good service, all of a sudden I couldn't access the server a few hours ago. I use Mail. I opened the Connection Doctor, and after several minutes of trying, I received the following error message:
    "Alert
    The mail server denied access to the user specified in Mail preferences because of a serious system error. Verify the settings for account “POP Account”. If necessary, contact your service provider to resolve the problem.
    The server returned the error: Unable to process From lines (envelopes), change recognition modes or check for corrupted mail drop."
    I haven't changed anything - so something's either corrupted - or the problem's not on my side. If something has been corrupted can I use a back-up Mail preferences file from my last back-up?
    Finally, maybe I'm paranoid but I wonder, would this be the error message I'd get if I had been denied access?
    Marcus

    Step one. Call your ISP and see what they say.

  • Can't access Portal Server

    Hi,
    After installation of JSE(Windows Version),
    I can access the identity admin console with url
    http://host:port/amconsole
    But I can't use the url
    http://host:port/portal or
    http://host:port/portal/dt
    to access Portal Server Desktop, the browser
    receive an 500 Internal Error Message.
    The summary report after installation is
    Installation Summary Report
    Install Summary
    Sun Java System Message Queue 3.0.1 Service Pack 2 : Installed, Configured
    Sun Java System Application Server 7 Update 1 : Installed, Configured
    Sun Java Studio Enterprise 6 2004Q1 : Installed, Configured
    Sun Java System Web Server 6.1 Service Pack 1 : Installed, Configured
    Sun Java System Directory Server 5.2 : Installed, Configured
    Sun Java System Identity Server 6.1 : Installed, Configured
    Sun Java System Portal Server 6.2 : Installed, Configured
    PolicyAgent: Installed, Configured
    It seems nothing wrong, and how can I solve
    this problem?
    Many thanks,

    So, you got Java SE installed. Great. (I've been following your other thread re: installing IS and PS properly).It's not exactly right. I try to use Windows 2000 to install JES and with the same DNS configuration.
    It works. But I still can't install IS/PS correctly in the original machine(Win XP).
    Check the troubleshooting info in the Java SE Install Guide, I believethis error is covered in there. Be sure you use a new instance of your browser to access the PS desktop. And, be sure to check the supported browser list in the Release Notes.
    I go through the overall Install Guide, it's really that I can't find and answer to solve my problem :'(
    Regards,

  • Can't access weblogic server from internet but can from intranet

    Hopefully this isn't the wrong place to post but I've searched through many many
    newsgroups to figure out where to post this but can't find a specific enough one.
    I've recently run into a problem with my weblogic server in that it can not be
    accessed from the internet now. This was all working several weeks ago, when
    I had the wl server listening for SSL communications on port 7002. I could access
    the server from both within our corporate intranet (kind of) as well as access
    it from the internet. I say kind of for the intranet in that when I chose to
    setup SSL on the the wl server, I couldn't get port 7002 to communicate through
    our proxy server. After a little research I determined that it would be best
    to communicate on the default SSL port of 443. After switching to 443, I didn't
    need to bypass the proxy any longer, when accessing from within intranet, but
    now couldn't access the server from the internet. The wl server is behind a firewall,
    but I had the network administrators open up port 443 on the firewall. They ran
    a network sniffer and determined that the wl server is sending a TCP FIN packet
    immediately following the last ACK packet in a TCP session establishment. I don't
    really understand what that all means, but it seems really strange that everything
    works great when inside the intranet and I don't get any TCP FIN packets sent
    from the server, but when you try to communcate through the firewall you do.
    Does anyone have any insight into this issue? something else I could look at.
    The network administrators are basically saying it's the webserver that needs
    configuration (even though it worked great in the past when listening on port
    7002 instead of 443). PLEASE HELP!!!

    Got it.  This thread helped!
    Thanks!
    https://discussions.apple.com/thread/3193444?tstart=60

  • I'm trying to connect to my work's VPN.  I am connected to the VPN, but I cannot access the server. I keep getting a message that says the server may not exist or is unavailable.  I know that's not the case because my coworkers are connected. Can someone

    I'm trying to connect to my work's VPN.  I am connected to the VPN, but I cannot access the server. I keep getting a message that says the server may not exist or is unavailable.  I know that’s not the case because my coworkers are connected. Can someone please help me? 

    I have the same problem. It is only with tv shows and only with programs I have downloaded after the software update.
    Apple support sent me the above link too....but it doesn't solve the problem...my computer is authorized and the content is in my library and will play on my Mac air, but it will not sync the tv shows, it keeps saying my computer isn't authorized for it.
    No answers here, but you are definitely not alone with this issue.

  • Iphone 4 error message while in wifi "safari can not open page because server stopped responding" after iOS6 update

    I am currently using my Iphone 4 in wifi networks only after canceling my cell phone plan. Over the weekend I did the IOS6 update on the iphone as well as updated my macbooks itunes and OS X operating systems updates that were available.  Since that my iphone's safara app won't connect.  After it trys to connect for a minute or 2 I recieve the message: "safari can not open page because server stopped responding".  However ALL other apps that require the phone to be connected to wifi for use work properly, i.e app store, imessage, pinger, facebook, etc.  I have checked all network setting and they looked right to me.  Anything I'm missing, ideas to try, or am I sol (lol)?  Safari worked perfectly before the update so I thought I might have done something wrong or forgot to change some type of setting.
    Thank you!

    If you can access Facebook while on Wifi at home, but you are unable to access it while away running on your carrier's 2G network, I could phone your carrier.  You have already completed the Cellular Data troubleshooting for the iPhone, so any limitations keeping your from connecting to Facebook over cellular will have to be answered by your carrier.

Maybe you are looking for

  • EJB 3.0 Session Bean Remote Client

    Hi, I am planning to migrate my EJB 2.1 to EJB 3.0. My old session bean is accessed by a remote java client. I just have to include this piece of code: Hashtable props = new  Hashtable(); props.put("java.naming.factory.initial", com.sun.jndi.cosnamin

  • Re: Safari Keeps Quitting Unexpectedly

    My Safari keeps quitting driving me crazy i am mac illiterate please help Process: Safari [758] Path: /Applications/Safari.app/Contents/MacOS/Safari Identifier: com.apple.Safari Version: 5.0.3 (5533.19.4) Build Info: WebBrowser-75331904~3 Code Type:

  • Itunes 10.7 - Internet Explorer stops working

    When I download itunes 10.7 my Internet Explorer 9 stops working and I can't get itunes 10.7; how do I fix this?

  • When I connect itunes and other related programmes freeze

    When i connect my ipod to the computer Itunes and Ipod updater an even occasionally the my computer program freezes and remains frozen until i disonnect i know my computer recognises it's connected because my ipod charges and it makes that you have c

  • ABAP Rouinte Type 6 In Infopackage Selection

    Hi Gurus/Collegues I have requirement such that The Infopackage should contain an ABAP routine (Type 6) which will be developed to automatically populate the  Performance week - selection field in the Infopackage when the Infopackage is used.  The va