What is the maximum number of email aliases allowed?

I just tried to set up 2 email aliases via iCloud.com.  I already have one setup and wanted to add a further two, which should be allowed as it says I can setup 2 more at the bottom of the preferences pane.  I did delete an alias that I no longer used about a month or so ago.  I've created one new alias but when I go to create my second new one it flashes up with a message saying something about a waitng period? And that because I've just deleted an alias I've got to wait 7 days before I can setup a new one as I'm at my maximum?!
I'm not at my maximum, I've got 2 setup and it says I have one more to setup now but it won't let me do it.  I don't know why it's giving me this waiting period because I cancelled one of my old aliases ages ago.  Any ideas?

You are allowed three aliases. When you have three, and delete one, you have to wait 7 days before you can create another to replace it.
That's the theory. Several posters have complained that the 7 days has extended itself into several weeks, and I've not seen a solution as yet.

Similar Messages

  • What is the Maximum Number of Concurrent Sessions allowed on a Shared Exchange Mailbox ?

    Hi,
    I have a query that how many concurrent sessions are allowed on a Resource Mailbox ?
    E.g. I have a scenario in which i run a Helpdesk, and it has an email address ([email protected]), where company employees can email thier IT Issues/requests.
    Now I have hired say 50 Service Desk agents, now is it possible that all 50 can access the IThelpdesk mailbox at one time ? Are there any limits on the number of the concurrent sessions of the mailbox ? What are the the permutations and combinations in this
    case ?
    ** The mailbox is on Exchange Server 2003**
    Regards,
    Tojo Thankachan
    +91 7875039665

    Hi,
    Exchange Server 2003 SP1 imposes a restriction on the number of permitted MAPI sessions per user. By default, the maximum number of permitted MAPI sessions per user is set to a hexadecimal value of 0x20 after you apply Exchange Server 2003 SP1.
    Generally, Event ID 9646 will be logged in the application event log of your Exchange Server 2003 computer when a client opens many MAPI sessions. Here is a KB descripted the details of it:
    http://support.microsoft.com/kb/842022
    For more information about MAPI session limit, please refer to:
    http://technet.microsoft.com/en-us/library/dd159906(v=exchg.80).aspx
    Thanks,
    Winnie Liang
    TechNet Community Support

  • What is the maximum number of A5 artboards allowed?

    Hi,
    Sorry if this is a simple question but I can't find the answer anywhere.
    I'm trying to create an A5 brochure in Illustrator CS6 and ideally I would like it to be 104 pages, but the maximum number of artboards I'm allowed is 100. Yet, when I set my size to A5 and number of artboards to 100 it says "Cannot fit artboards in canvas size. Please change the artboard size or number of artboards and try again." Do you know how many I'm allowed at A5 size?
    Alternatively, would you recommend doing, say, 4 lots of 26 artboards and getting the printers to stitch them together when printing?

    100 artboards is max.
    You'd better use InDesign.

  • What is the maximum number of emails I can convert to PDF at once?

    I just purchased Adobe Acrobat Pro 11 and am trying to convert Outlook email folders to pdf.  My Inbox folder is about 2 gig in size.  If I select a specific sub-folder there is no issue; however, if I select the highest level (inbox) I get an error message file is too large.  Does anyone know the maximun file size allowed?

    Hi kevinv8462151,
    I've seen reports that 10,000 emails is the limit, but I'm not sure whether that's an official limitation.
    Best,
    Sara

  • What is the maximum number of emails that can be sent at 1 time?

    We are a business and need to send several thousand emails at one time. Can we do this or are we limited to 100 per hour, 500 per day, for example/

    Thunderbird is email client software that runs on YOUR computer. It has nothing to do with limits or quotas. If there are any limits they would be set by your email provider. I suggest that you ask them.

  • What is the maximum number of contacts in a group that will send in an iCloud email? I'm sending from MacBookPro.

    What is the maximum number of contacts in a group that will send in an iCloud email? I'm sending from MacBookPro.

    Limits on Sending Messages  
    iCloud has several safeguards to ensure that only iCloud members can send messages using the iCloud outgoing mail server. Among these safeguards are reasonable limitations on:
    The total number of messages you can send each day (200 messages)
    The number of recipients to whom you can send each day (1000 recipients)
    The maximum number of recipients per message (100 recipients)
    The size of incoming and outgoing messages (20 MB)
    You can send 10 emails to 100 people each in a day, for example, or 198 messages with, on average, 5 recipients (and five ninety-ninths).

  • What is the maximum number of recipients can I email in one email?

    Using 10.9.3 what is the maximum number of recipients can I email in one email from a MacBook Pro?

    Sending limit for a single email is 100 recipients.
    Sending limit for a 24 hour period is 200 emails.
    Maximum recipients for a 24 hour period is 1,000.
    Attachment size limit for outbound or inbound emails is 20mb.
    If You Exceed Limitations – You’ll see an error message and your account will not function for 24 hours.

  • What is the maximum number of characters in an Oracle 10G Instance Name

    All,
    Can I know what is the maximum number of characters in an oracle 10g instance name under AIX? Is it 7 characters or 8 characters?
    regards
    Santhosh

    One should really make the difference between db_name and instance_name: if instance_name default value is db_name it can be different
    (even on a non RAC database).
    For example with Oracle 10.2.0.4 you can create a database named DB78 with instance_name=DB12345678:
    $ uname -a
    Linux lx01.localdomain 2.6.18-92.el5 #1 SMP Fri May 23 22:17:30 EDT 2008 i686 i686 i386 GNU/Linux
    $ ps -fu oracle | grep smon
    oracle    6353     1  0 20:30 ?        00:00:01 ora_smon_DB12345678
    oracle    6412  5596  0 20:37 pts/1    00:00:00 grep smon
    $ export ORACLE_SID=DB12345678
    $ sqlplus / as sysdba
    SQL*Plus: Release 10.2.0.4.0 - Production on Wed Sep 8 20:34:26 2010
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> show parameter name
    NAME                                 TYPE        VALUE
    db_file_name_convert                 string
    db_name                              string      DB78
    db_unique_name                       string      DB78
    global_names                         boolean     FALSE
    instance_name                        string      DB12345678
    lock_name_space                      string
    log_file_name_convert                string
    service_names                        string      DB78I would not recommend this practice: but it's interesting to know to avoid confusing between db_name and instance_name.

  • What's the maximum number of Apple TVs that can be displayed in the AirPlay list?

    We have 50 conference rooms all on the same network and are considering equiping each one with an Apple TV for AirPlay Mirroring our iPad 2s to the rooms projector, or TV. What is the maximum number of Apple TVs that can be displayed in the AirPlay menu to select the correct Apple TV for the conference room being used?

    From what you're saying it sounds as though you wouldn't want to Airplay to all AppleTVs at once, just identify them when that specific room in use?
    This is one of those uncharted territories wheer most domestic users will not require such a set up - Apple provide no official info about this, but they'd be your best source to ask.
    AC

  • What is the maximum number of columns that can be displayed by sqlplus?

    Hello,
    Questions:
    Is there a limit on what sqlplus can display?
    What is the maximum number of columns that can be displayed by sqlplus?
    I cannot find anything on this in my search. I checked the limits page:
    http://docs.oracle.com/cd/B19306_01/server.102/b14357/apa.htm#sthref3658
    http://docs.oracle.com/cd/E11882_01/server.112/e16604/apa.htm#i635278
    It does not specify any column limits; however, I'm thinking it is tied to LINESIZE which is system dependent.
    Please confirm if true.
    Thanks!

    Received answer directly from SQL*Plus Development:
    "sqlplus does not have a limit on the number of columns it displays."
    They created a table with more than 256 columns with data and had no problem retrieving the data.

  • TS1503 what is the maximum number of pictures I can store and keep on my iPhone 3G?

    What is the maximum number of pictures I can store (and keep indefinitely) on my iPhone 3GS (8GB)?

    It is a balancing act between your photos and everything else you have on the device (apps, mail, messages, etc.), so there is no specific "number" we can give you. Just keep track of your available memory, and make sure you back up your photos regularly so if you reach the maximum memory capacity, you can delete the oldest ones without worrying that they are not saved somewhere else:
    IMPORTING PHOTOS - WINDOWS/MAC
    Cheers,
    GB

  • IN cluse: what is the maximum number of values that can use in "in" caluse?

    Hi All,
    Please see the following querry
    select * from <table> where <columnname> in (value1,value2,....);
    My question is what is the maximum number of values we can put inside the bracket in the querry?
    I mean what is the maximum number of values that can use in "in" caluse.
    Best Reagrds
    Marcelo

    http://download-west.oracle.com/docs/cd/B19306_01/server.102/b14200/expressions014.htm
    A comma-delimited list of expressions can contain no more than 1000 expressions. A comma-delimited list of sets of expressions can contain any number of sets, but each set can contain no more than 1000 expressions.
    The following are some valid expression lists in conditions:
    (10, 20, 40)
    ('SCOTT', 'BLAKE', 'TAYLOR')
    ( ('Guy', 'Himuro', 'GHIMURO'),('Karen', 'Colmenares', 'KCOLMENA') )

  • What is the maximum number of Active Connection in SSG 7206VXR?

    Hi,
    What is the maximum number of SSG Host or active connection (show ssg service package) for Cisco 7206VXR which running with NPE-G1? The SSG is deploying with Web-login and the TCP-Redirect, Port-bundle and Pass-through is enabling. The SSG is to handling IP session authentication. The SSG is binding Gigabit Ethernet.
    The current version of IOS is show as below.
    Cisco IOS Software, 7200 Software (C7200-ADVIPSERVICESK9-M), Version 12.4(9)T1, RELEASE SOFTWARE (fc2)
    Thanks,
    Chia

    To set the maximum number of services per user, use the ssg maxservice command in global configuration mode. To reset the maximum number of services per user to the default, use the no form of this command. ssg maxservice number and no ssg maxservice
    If you want to know more please click following URL:
    http://www.cisco.com/en/US/products/sw/iosswrel/ps5187/products_command_reference_chapter09186a008017cf59.html

  • . What is the maximum number of levels available in SAP?

    What is the maximum number of levels available in SAP?
    thanx in advanc
    regards,
    rajesh

    this is the question i got from the net for interview preparaton.
    i tried a lot to find out the answer, but still it is pending.
    pls. help me in this.
    regards,
    rajesh

  • What is the maximum number of columns available in Numbers 3.1?

    What is the maximum number of columns available in Numbers 3.1? (I don't seem to be able to get past Column IU. Is that just how it is?)

    DBacs wrote:
    Aha! Just after posting this, the Support Community website suggested "More Like This", and I discovered the answer: 256 columns.  (I don't suppose I get Genius Points for answering my own question, do I...?)
    No

Maybe you are looking for

  • HT201359 Good day, how and where can I claim a debit I do not understand in my iTunes account

    I was billed by Gameloft a few transactions I am not familiar with My daughter had downloaded one of their games, and played with it She is 7 years old, and can't read English We received a few debits in a very short time until the credit card compan

  • MSI-180: Radio is very quiet

    Hello I have the following problem with my MSI-180: The volume of the radio is very quiet. The volume level is much lower than for all other devices (like DVD, TV, etc). Even setting the volume of the Mixer in Windows to max is not enough to ajust th

  • Purchase item

    what should i do..i already purcahse item COD ghost like ripper and soap pack..i already downloaded it to my ps3 but its still not available in game..pls help..

  • Export Project BCC

    I need to export the whole configuration of my project by bcc. I tried the export option in BCC, but this solution is nothing productive for a large project. Someone tell me some alternative to make a backup of my project?

  • Where are all my playlists on the new version of itunes

    I have 30 plus playlists and when I download the new version they are all gone. Can anyone help a non techie find them again?!