Cyrus: Adding another mailstore

The RAID disk with our mailstore on it is full. Unfortunately, adding another mailstore to the Cyrus mail server isn't quite as easy as the documentation states.
I added a second one and moved my account there, but I wasn't able to access it.
The original mailstore was on raid1. The new one was on raid0. Every possible setting that I can find reflected that account move to raid0. However, the logs had complaints stating the the account was 'not found' on raid1...
Does this really work? Our server is currently online and I am on-hold for the Apple tech support phone line.
Sakshale
Message was edited by: sakshale

I haven't found an answer yet, but I did find the reason my disk was full. I discovered the following CRON job.
0 3 * * * /usr/sbin/mailbfr -b /Volumes/raid1/mail_server/backup --mode rotate
It copies the entire tree every morning and keeps the Saturday copy forever.
Deleting these backup copies freed up enough disk space to get us going again.

Similar Messages

  • How do I delete a credit card from my iTunes account without adding another one? My friend bought an app with her credit card and I no longer have the info but every time I try to download a free app (ex: Instagram, Twitter, vine etc.)it ask for the info

    How do I delete a credit card from my iTunes account without adding another one? My friend bought an app with her credit card and I no longer have the info but every time I try to download a free app (ex: Instagram, Twitter, vine etc.) it ask for the credit cards security code. I can not find a way to delete that cards info without adding another cards info.

    http://support.apple.com/kb/ht1918
    http://support.apple.com/kb/ts5366

  • Adding another machine to Primary Zone

    Adding another machine to Primary Zone
    I have a good split-DNS configuration that has been working without issue for some months now since I installed OS X Server Snow Leopard (Mac Mini) at my company's office. We have another machine used as a file server (Mac Pro), without the dedicated server OS installed.
    We want to add a virtualized instance of Windows Server 2008 R2 as a guest OS on the Mac Pro via VMWare Fusion. We want to use this Windows Server instance to host some private web based services for our corporate team (intended to be reachable from within the local private network, and remotely, from the public internet (with proper authorization to access only).
    So far so good:
    -WinServer2008R2 installed as a guest OS on the host Mac Pro
    -WinServer's virtual NIC is in bridged mode (joins the host OS's physical network)
    -WinServer instance configured with an IP 10.0.1.33, which is set aside and reserved for the WinServer by the local DHCP service on the same network
    -WinServer successfully installed and tested IIS7 - both localhost from the WinServer instance and http://10.0.1.33 from other machines on the local private network (and from remote VPN clients) resolve to the WinServer's IIS default page properly.
    Where I am stumbling now in configuring DNS on the Mac Mini to properly forward requests aimed at the WinServer instance.
    DNS for the local domain is controlled by the Mac Mini. The configuration has been quite simple up to now, as that has met our needs. Just one Primary Zone and one Reverse Zone. We have an external DNS service from DYNDNS that handles any request for our domain from the external public internet. For now I'm not concerned with altering the external DNS service. Once I get the name service to properly resolve requests for the WinServer instance from the local domain, then I'll move onto matching up the external DNS.
    --Primary Zones
    Primary Zone:
    Primary Zone Name: ourcompany.net.
    Nameservers: Zone: ourcompany.net. Nameserver Hostname: server.ourcompany.net.
    --Records
    Machine Record:
    Machine Name: server.ourcompany.net.
    IP Address: 10.0.1.11
    --Reverse Zones
    Reverse Zone:
    Reverse Zone Name: 11.1.0.10.in-addr.arpa.
    Nameservers: Zone: 11.1.0.10.in-addr.arpa. Nameserver Hostname: server.ourcompany.net.
    Resolve 10.0.1.11 to: server.ourcompany.net.
    The -checkhostname command returns:
    Primary address = 10.0.1.11
    Current HostName = server.ourcompany.net
    DNS HostName = server.ourcompany.net
    The names match. There is nothing to change.
    dirserv:success = "success"
    So I attempted to add a Machine Record to the Primary Zone with the following settings:
    Machine Record:
    Machine Name: dash.thewcateam.net.
    IP Address: 10.0.1.33
    When I did this it added the following Reverse Zone:
    Reverse Zone:
    Reverse Zone Name: 1.0.10.in-addr.arpa.
    Nameservers: Zone: 1.0.10.in-addr.arpa. Nameserver Hostname: server.ourcompany.net.
    Resolve 10.0.1.33 to: dash.ourcompany.net.
    And with the following records added I don't seem to have a proper resolution to 10.0.1.33 when requesting dash.ourcompany.net.
    I'm wondering where I should look next in troubleshooting this issue. Any pointers or advice would be very appreciated.

    Remove the "Reverse Zone Name: 11.1.0.10.in-addr.arpa."
    It's probably left from when you first configured the server.
    Though the "Primary Zone Name: ourcompany.net." seems correct.
    Then update the 10.0.1.11 record so it's added to the right reverse zone - "1.0.10.in-addr.arpa."
    In a MacPro we run VM Ware on a separate interface (en1/"Built in 2") that is forced up using a LaunchDaemon. "Built in 2" must be active in Network config in OS X but don't need to be configured (red "LED").
    That way the MacPro can use it's own IP on the en0 interface without disturbing en1 and vice versa.

  • Powershell script assistance - adding another property to existing script

    This is not my script but was written by Richard L. Mueller. It works perfectly for us but I would like to know if the account is enabled or disabled when the output is created. Basically it would output the name, lastlogon and then either enabled or disabled.
    I've attempted to add a new property by adding another " $Searcher.PropertiesToLoad.Add" and "$Result.Properties.Item ".
    It works fine if I add something like "givenName" but I can't find the property name to show if the account is enabled or disabled.
    The entire script is shown below:
    # PSLastLogon.ps1
    # PowerShell script to determine when each user in the domain last
    # logged on.
    # Copyright (c) 2011 Richard L. Mueller
    # Hilltop Lab web site - http://www.rlmueller.net
    # Version 1.0 - March 16, 2011
    # This program queries every Domain Controller in the domain to find the
    # largest (latest) value of the lastLogon attribute for each user. The
    # last logon dates for each user are converted into local time. The
    # times are adjusted for daylight savings time, as presently configured.
    # You have a royalty-free right to use, modify, reproduce, and
    # distribute this script file in any way you find useful, provided that
    # you agree that the copyright owner above has no warranty, obligations,
    # or liability for such use.
    Trap {"Error: $_"; Break;}
    $D = [System.DirectoryServices.ActiveDirectory.Domain]::GetCurrentDomain()
    $Domain = [ADSI]"LDAP://$D"
    $Searcher = New-Object System.DirectoryServices.DirectorySearcher
    $Searcher.PageSize = 200
    $Searcher.SearchScope = "subtree"
    $Searcher.Filter = "(&(objectCategory=person)(objectClass=user))"
    $Searcher.PropertiesToLoad.Add("distinguishedName") > $Null
    $Searcher.PropertiesToLoad.Add("lastLogon") > $Null
    # Create hash table of users and their last logon dates.
    $arrUsers = @{}
    # Enumerate all Domain Controllers.
    ForEach ($DC In $D.DomainControllers)
    $Server = $DC.Name
    $Searcher.SearchRoot = "LDAP://$Server/" + $Domain.distinguishedName
    $Results = $Searcher.FindAll()
    ForEach ($Result In $Results)
    $DN = $Result.Properties.Item("distinguishedName")
    $LL = $Result.Properties.Item("lastLogon")
    If ($LL.Count -eq 0)
    $Last = [DateTime]0
    Else
    $Last = [DateTime]$LL.Item(0)
    If ($Last -eq 0)
    $LastLogon = $Last.AddYears(1600)
    Else
    $LastLogon = $Last.AddYears(1600).ToLocalTime()
    If ($arrUsers.ContainsKey("$DN"))
    If ($LastLogon -gt $arrUsers["$DN"])
    $arrUsers["$DN"] = $LastLogon
    Else
    $arrUsers.Add("$DN", $LastLogon)
    # Output latest last logon date for each user.
    $Users = $arrUsers.Keys
    ForEach ($DN In $Users)
    $Date = $arrUsers["$DN"]
    "$DN;$Date"

    It is part of the userAccountControl attribute. Retrieve that attribute for each user and test if the ADS_UF_ACCOUNTDISABLE bit (2) is set.
    -- Bill Stewart [Bill_Stewart]

  • I am unable to access my mail on my IMac after adding another email account. Somehow I manage to knock myself out of the Telus acct that I had recently migrated to my IMac. Any idea of how I can reconnect to my Telus acct?

    Hi
    I am having trouble accessing my IMac mail after I added another mail account to my list of email accts. I had migrated my outlook acct. from my PC to my IMac and when I went back to use my password it wouldn't let me in. Any ideas of what I should do?

    Adding another account would not affect one that you already had. Either the password is wrong, or the server is coincidentally rejecting your credentials for some reason, or you did something different.
    OS X Mail: Troubleshooting sending and receiving email messages

  • My time capsule was working and then I added another Macbook pro. TC stopped appearing in Airport Utilities. I have tried resetting TC, I have turned if off and held reset button with pen for 10 secs. I just cannot work out what else to do?

    My time capsule was working and then I added another Macbook pro. TC stopped appearing in Airport Utilities. I have tried resetting TC, I have turned if off and held reset button with pen for >10 secs. I just cannot work out what else to do? I have turned router off and on. Amber light is flashing.

    The ethernet says self assigned IP 169.254.67.6
    Then the ethernet is not getting an IP from the TC.. there is no connection.
    I am not sure where you mean when you say the green LED should be on. Do you mean the TC?
    Thanks
    In order to help troubleshoot ethernet connections all routers use connectivity leds.. even APPLE.. it has one big LED on the front.. and 4 tiny leds beside each ethernet port. That light has to come on for ethernet to be active.. if you plug an ethernet cable into the port and the light doesn't come on.. then there is no connection.. either the other end isn't plugged in.. or the cable is bad.. or the ethernet port is bad.. something is wrong.
    To get access to the TC you need this led to be green.. is it?
    If it is green and the WAN is also green.. then I want you to unplug the WAN connection.. the blue wire in the picture.. the port slightly separated from the 3 LAN port.. computer plugged just into LAN port.. no airport turned on.. and press the reset again for 10sec until front led flashes rapidly.. then try and bring up the airport utility again.. assuming the ethernet led is green.
    How old and what model is the TC?
    The A number from the rubber mat will tell us the model.

  • Help! We have a form with more than 200 entries and when I looked at it yesterday it had one! When you download the form to excel they all show up. However, when I added another record today it disappeared. Can you tell me what's happening? I've been usin

    Help! We have a form with more than 200 entries and when I looked at it yesterday it had one! When you download the form to excel they all show up. However, when I added another record today it disappeared. Can you tell me what's happening? I've been using adobe forms for 2 years with mass response feedback and have never had this problem.

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

  • Adding another  dimension on BI Admin layer.......

    hi,
    i already have a cube with few dimensions and its running fine on dashboard. Now i added another dimension in oracle warehouse builder cube (same running cube) now i want to upgrade this cube and its data on BI Admin layer so that i can see results accordingly on BI Answers and dashboard.
    How to add this dimension in BI Admin layer as i don't want to import all the dimensions and cube again on physical layer, then make hierarchies for each dimension on business model and mapping layer and changes on presentation layer (just to avoid rework).
    If i import a single dimension it behave like a fact table (cube) with a yellow color.
    thanks in advance
    Mimran

    Hi,
    As I understood from your query you are importing a new dimension table to the physical layer of your RPD. Once you import the dimension table it will be a stand alone table. So join this table to the existing Fact table with the proper key. Then Drag and drop the same table to the BMM layer. In the BMM layer open the Business model diagram and join it to the fact table and then drag it to the presentation layer. This should solve your purpose.

  • Adding another Airport Extreme – I'm having problems-

    …please help.
    I am a total novice when it comes to networking so please explain clearly. I had one AE connected to some speakers in the kitchen so I could stream music there. I got another AE today to connect to my router to hopefully provide a quicker and more reliable wireless connection.
    I'm having problems adding the 2 AE to the same network. Tried lots of different ways but nothings worked. I can't my mac to find them both at the same time? When I try to add the other one it asks me to switch networks. When I switch networks i can't see the previous one so I can't add it.
    is there any step by step guide to getting 2 AE up and running i.e. adding another AE to an existing network?
    Cheers in advance.

    kroc_kroc, Welcome to the discussion area!
    Even though the title of your thread says "Extreme" I thing you really mean "Express".
    If you are trying to connect the 2nd AirPort Express (AX) wirelessly...
    (1) Make sure that the 2nd AX is in an area with a good wireless signal from your current wireless network.
    (2) Configure the 2nd AX to join a wireless network and select your current wireless network.

  • Adding another Verizon router....

    I currently have FIOS installed at my home.  I have my wireless router installed on the main level in my home.  The wireless signal is great on the main level and upstairs, but the signal in the basement varies from good to low.  I am looking for a solution that will allow for either better signal strength or adding another router in the basement that connects to my existing FIOS line.  This would also require adding a phone line in the basement as well...unfortunately the previous owner of my home did not have lines put in the basement.
    At any rate, can someone assist with this solution.  Thanks in advance

    If running an Ethernet aconenction from the Current Router to the Baement is not an option you can get another FIOS Router and connect it to the COAX Cabling in your house.  It has to be configured properly and information can be found here:
    http://www.dslreports.com/faq/verizonfios/3.0_Networking#15984
    Keep the SSID the same and put the 2nd router on a diffent channel from the 1st.
    If you are the original poster (OP) and your issue is solved, please remember to click the "Solution?" button so that others can more easily find it.
    If anyone has been helpful to you, please show your appreciation by clicking the "Kudos" button.

  • ITunes adding another copy "Someone Like You" by Adele over and over and over.... literally every 10 seconds

    I recently bought a used Mac Mini which has a fresh copy of Mountain Lion 10.7.5 installed on it which includes iTunes 10.7
    Since my time machine backup of my now dead iMac (very 1st Intel iMac) has far more data on it (the iMac has a 250 GB internal HD and my "new" Mac Mini only has a 160 GB. internal HD) So I did a minimum transfer of my user data using Migration Assistant from a Time Machine backup of my old iMac.
    I manually copied the songs from the iTunes folder from the back up drive to the iTunes Media folder on the new Mac Mini
    Everything seemed fine until started seeing iTunes adding another copy "Someone Like You" by Adele over and over and over.... literally every 10 seconds, as long as iTunes is open and running, this song just keeps adding another copy.  The program has been open again for a few minutes and there are now over 100 copies of this song in the iTunes window!  I've never seen anything like this.
    I've selected the songs deleted them from itunes "MUSIC" window in the program and it just keeps replicating the song.
    I turned off in "ADVANCED PREFERENCES, "Keep iTunes Media folder organized and also unchecked Copy files to iTunes Media folder when additng to library" to see if that would make this behavior stop.
    I've removed the "Adele" file folder from the iTunes Media/Music folder and trashed it...
    Still keeps adding the song.... 
    (I just bought my iPhone 5 today and this is stopping me from transefering and syncing my apps and other data from my old iPhone 3GS for fear it might do something strange to iTunes or the iPod function in the new iPhone.)
    Thanks!

    octothorpe wrote:
    After going through the forums, I did find some more information.
    i noticed
    So in other words, yes, it is a known problem, and yes, it's a bug with the (11) version that was fixed, for most people, with the (12) version.
    have it your own way, buddy ...
    By the way, I have no idea why you would coyly allude to this issue, parsing out little bits of half-information. You've clearly participated in the other discussions about this issue and could just come out and say what I said above.
    i'm an end-user like you, no Apple engineer or tech. i *don't know* if a specific release contained a bug or not. i'm trying to choose my words carefully to stay in line with the ToU.
    if you didn't find my replies helpful, say so. i certainly meant no harm and was giving it my best shot.
    happy computing !
    JGG

  • Added another email account, won't send from it?

    I have a couple email accounts on my phone and all is great. I just added another account from a local internet provider for a small business I have. It will recive mail from there but when I try to send i get "The sender address is invalid" I checked and double checked and all seems to set up correctly???
    The account is with Plantation Cable in Georgia, if that means anything to anybody.

    If the local internet service provider for this email account does not provide an authenticated SMTP server (most ISPs do not provide an authenticated SMTP server), you won't be able to send with the account using the ISP's SMTP server unless you are connected to the internet with your ISP via an available wi-fi network. When connected to the internet via AT&T'a network, you can use AT&T's SMTP server to send messages with the account, which is available on your iPhone to select as the SMTP server for the account. This may or may not work for sending with the account when connected to an available wi-fi network with a different ISP used for internet access.

  • Adding another link with etherchannel-PAGP

    Hi all,
    I have a 10g trunk link between my two 4510 coreswitches.   Now the utilization on this link is shooting up to 9.5gb which is forcing us to put another 10g link  between these two switches.
    We are planning to configure Etherchannel-PAGP. There should be any sort of downtime on the current link while adding another link to it.
    How do i add another link with etherchannel -PAGP with out having downtime on the current link?  could you please guide me on this?
    Thanks
    Shibu

    Shibu,
    Jon is 100% correct, that since this is not already and Etherchannel, there will be downtime, but it should be minimal. Now, what you could do, is depending on your physical topology, you should connect these two switches together with a GigbitEthernet link in the meatnime, it will be blocked by spanning tree (if it's a L2 port), since the 10G link will be give priority by default. Then you could afford downtime on the 10 gig link, while you create an etherchannel, If these two links are L2, you could configure UplinkFast, so the switchover is VERY fast.
    I've done this same setup before when making changes, but it all depends on if you can acutally physically do that. If not, you will have some downtime involved.
    You can also, just configure all this on notepad, and copy and paste.

  • Is it possible Adding another 2 harddrive sas 2.5' hot plug on existing raid 1 ????

    Dear All,
    I have HP ML370 G6 with 2 harddrives sas 2.5' 300GB hotplug on raid 1.
    And it is almost runout space. I have plan to adding another 2 harddrive with same type.
    Is is possible to add another harddrive on raid 1 without change or re-install the operating system installed ??
    My operating system is Redhat  Enterprise Linux 4 (RHEL 4) and oracle database inside.
    Please I need your suggest and advise, what should I do to add more space on existing raid 1.
    Thank You,
    breakthelimit

    There is no BIOS in OS X. There is only the EFI stored in ROM that is not user modifiable. OS X is probably checking Bay 0 for the boot drive since that is where it should be. It won't check the Tempo drive since it is treated like an external drive. I suggest you open Startup Disk preferences to see if the Tempo device is selected as the boot device. If it isn't, then select it. That will probably shave off a few seconds in the startup time.

  • Adding another partition in the bootcamp partition

    After install of Windows 7 on bootcamp I would like to shrink the Bootcamp partition and setup a second windows partition. Is this possible?

    gdmk wrote:
    Perhaps you might mention the potential downside and possible pitfalls before suggesting it, you haven't been here long enough to see some of the problems this can cause.
    Again I would claim I did both here and in my post.
    This is your post.
    gdmk wrote:
    Re: adding another partition in the bootcamp partition 
    Nov 20, 2012 4:24 PM (in response to Csound1)
    Csound1 - I don't know why you keep saying that it is not possible when it is.
    MarkTL please see the following discussion,https://discussions.apple.com/message/20344625?ac_cid=op123456#20344625, but please pay special attention to the final paragraphs.
    No mention of any provisions for recovery or backup, no mention that this is an unsupported procedure, no mention of possibe unwanted consequences.

Maybe you are looking for

  • How to create a F4 help for a report selection screen field

    hi, can any one guide me to create F4 help for a field in a selection screen in a report program,plz give me a sample code

  • Separate User accounts

    My daughter's iTunes program was inadvertantly linked to my iTunes account. Both users are on the same iMac. How do I unlink the accounts and help her set up her own account to purchase music with her iTunes gift cards rather than my credit card?

  • Acrobat links don't work on CD-ROM. Need help quickly...please??

    This is my first project in Acrobat and it seems to be somewhat simple but this is my problem. I have pages that link to external files (.jpgs, .eps, quicktime movies). All of these links keep their "absolute" addresses when i copy the .pdf files to

  • ST22 core dumps in a Linux 64bit environment

    Hello, I am running a combination ECC5.0/Oracle 9.2.07 on a Linux 4.0 64bit version. My CI and database are distributed. Since go live we have been experiencing core dumps that have been occuring every 2-3 weeks. So far we have analyzed that when thi

  • Accessing static members of subclasses

    So here is my problem. I have two beans (one extends the other), and I have one DAO class for each to access their tables (using Hibernate). In most cases the queries will be identical so I also have an abstract DAO class (extended by the other two D