New iptables installed, but no email requst posseble?

Hi All
I installed new iptables rules (got from James Stephens ([email protected]) http://www.sns.ias.edu/~jns/ ) and now everything seems to be ok, as i am here, but kmail isn't able to load my emails down?!
i installed the rules, cause the iptables -L sayd there are no rules at all, and so i'm a bit paranoid of that.
Has anyone an idear? Here's my iptabels.rules:
#!/bin/bash
## Iptables example ruleset
## James Stephens ([email protected])
## http://www.sns.ias.edu/~jns/
modprobe ip_tables
modprobe ip_conntrack
modprobe ip_conntrack_ftp
iptables -F
iptables -X
iptables -Z
iptables -P INPUT DROP
iptables -P FORWARD DROP
iptables -P OUTPUT DROP
IFACE="ath0"
IPADDR="my ip, no dhcp"
NAMESERVER_1="server1"
NAMESERVER_2="server2"
BROADCAST="net broadcast"
LOOPBACK="127.0.0.0/8"
CLASS_A="10.0.0.0/8"
CLASS_B="172.16.0.0/12"
CLASS_C="192.168.0.0/16"
CLASS_D_MULTICAST="224.0.0.0/4"
CLASS_E_RESERVED_NET="240.0.0.0/5"
P_PORTS="0:1023"
UP_PORTS="1024:65535"
TR_SRC_PORTS="32769:65535"
TR_DEST_PORTS="33434:33523"
/bin/echo "1" > /proc/sys/net/ipv4/icmp_echo_ignore_all
/bin/echo "1" > /proc/sys/net/ipv4/icmp_echo_ignore_broadcasts
/bin/echo "0" > /proc/sys/net/ipv4/conf/all/accept_source_route
/bin/echo "0" > /proc/sys/net/ipv4/conf/all/accept_redirects
/bin/echo "1" > /proc/sys/net/ipv4/icmp_ignore_bogus_error_responses
for interface in /proc/sys/net/ipv4/conf/*/rp_filter; do
   /bin/echo "1" > ${interface}
done
/bin/echo "1" > /proc/sys/net/ipv4/conf/all/log_martians
/bin/echo "0" > /proc/sys/net/ipv4/ip_forward
############ Rules
iptables -A INPUT  -i lo -j ACCEPT
iptables -A OUTPUT -o lo -j ACCEPT
## SYN-FLOODING PROTECTION
iptables -N syn-flood
iptables -A INPUT -i $IFACE -p tcp --syn -j syn-flood
iptables -A syn-flood -m limit --limit 1/s --limit-burst 4 -j RETURN
iptables -A syn-flood -j DROP
## Make sure NEW tcp connections are SYN packets
iptables -A INPUT -i $IFACE -p tcp ! --syn -m state --state NEW -j DROP
## FRAGMENTS
iptables -A INPUT -i $IFACE -f -j LOG --log-prefix "IPTABLES FRAGMENTS: "
iptables -A INPUT -i $IFACE -f -j DROP
## SPOOFING
iptables -A INPUT  -i $IFACE -s $IPADDR -j DROP
# Refuse packets claiming to be from a Class A private network.
iptables -A INPUT  -i $IFACE -s $CLASS_A -j DROP
# Refuse packets claiming to be from a Class B private network.
iptables -A INPUT  -i $IFACE -s $CLASS_B -j DROP
# Refuse packets claiming to be from a Class C private network.
iptables -A INPUT  -i $IFACE -s $CLASS_C -j DROP
# Refuse Class D multicast addresses. Multicast is illegal as a source address.
iptables -A INPUT -i $IFACE -s $CLASS_D_MULTICAST -j DROP
# Refuse Class E reserved IP addresses.
iptables -A INPUT -i $IFACE -s $CLASS_E_RESERVED_NET -j DROP
# Refuse packets claiming to be to the loopback interface.
# Refusing packets claiming to be to the loopback interface protects against
# source quench, whereby a machine can be told to slow itself down by an icmp source
# quench to the loopback.
iptables -A INPUT  -i $IFACE -d $LOOPBACK -j DROP
# Refuse broadcast address packets.
iptables -A INPUT -i $IFACE -d $BROADCAST -j DROP
## DNS
iptables -A INPUT -i $IFACE -p udp -s $NAMESERVER_1 --sport 53 -m state --state ESTABLISHED -j ACCEPT
iptables -A INPUT -i $IFACE -p udp -s $NAMESERVER_2 --sport 53 -m state --state ESTABLISHED -j ACCEPT
# Allow UDP packets to DNS servers from client.
iptables -A OUTPUT -o $IFACE -p udp -d $NAMESERVER_1 --dport 53 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A OUTPUT -o $IFACE -p udp -d $NAMESERVER_2 --dport 53 -m state --state NEW,ESTABLISHED -j ACCEPT
## SSH usualy used, instead of Telnet below
# Allow ssh outbound.
### Actually we don't need it and havn't miss is in the past
iptables -A INPUT  -i $IFACE -p tcp --sport 22 -m state --state ESTABLISHED -j ACCEPT
iptables -A OUTPUT -o $IFACE -p tcp --dport 22 -m state --state NEW,ESTABLISHED -j ACCEPT
## TELNET old, usualy SSH is used
# Allow telnet outbound.
## iptables -A INPUT  -i $IFACE -p tcp --sport 23 -m state --state ESTABLISHED -j ACCEPT
## iptables -A OUTPUT -o $IFACE -p tcp --dport 23 -m state --state NEW,ESTABLISHED -j ACCEPT
## WWW
# Allow www outbound to 80.  http://
iptables -A INPUT  -i $IFACE -p tcp --sport 80 -m state --state ESTABLISHED -j ACCEPT
iptables -A OUTPUT -o $IFACE -p tcp --dport 80 -m state --state NEW,ESTABLISHED -j ACCEPT
# Allow www outbound to 443. https://
iptables -A INPUT  -i $IFACE -p tcp --sport 443 -m state --state ESTABLISHED -j ACCEPT
iptables -A OUTPUT -o $IFACE -p tcp --dport 443 -m state --state NEW,ESTABLISHED -j ACCEPT
## FTP
# Allow ftp outbound.
iptables -A INPUT  -i $IFACE -p tcp --sport 21 -m state --state ESTABLISHED -j ACCEPT
iptables -A OUTPUT -o $IFACE -p tcp --dport 21 -m state --state NEW,ESTABLISHED -j ACCEPT
# 1) Active ftp.
iptables -A INPUT  -i $IFACE -p tcp --sport 20 -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A OUTPUT -o $IFACE -p tcp --dport 20 -m state --state ESTABLISHED -j ACCEPT
# 2) Passive ftp.
iptables -A INPUT  -i $IFACE -p tcp --sport $UP_PORTS --dport $UP_PORTS -m state --state ESTABLISHED -j ACCEPT
iptables -A OUTPUT -o $IFACE -p tcp --sport $UP_PORTS --dport $UP_PORTS -m state --state ESTABLISHED,RELATED -j ACCEPT
## SMTP
iptables -A INPUT  -i $IFACE -p tcp --sport 25 -m state --state ESTABLISHED -j ACCEPT
iptables -A OUTPUT -o $IFACE -p tcp --dport 25 -m state --state NEW,ESTABLISHED -j ACCEPT
## AUTH server (I actually don't know what this means)
## iptables -A INPUT -i $IFACE -p tcp --dport 113 -j REJECT --reject-with tcp-reset
## TRACEROUTE
iptables -A OUTPUT -o $IFACE -p udp --sport $TR_SRC_PORTS --dport $TR_DEST_PORTS -m state --state NEW -j ACCEPT
# ICMP
iptables -A INPUT -i $IFACE -p icmp -m state --state ESTABLISHED,RELATED -j ACCEPT
# We always allow icmp out.
iptables -A OUTPUT -o $IFACE -p icmp -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT
## LOGGING
# Any udp not already allowed is logged and then dropped.
iptables -A INPUT  -i $IFACE -p udp -j LOG --log-prefix "IPTABLES UDP-IN: "
iptables -A INPUT  -i $IFACE -p udp -j DROP
iptables -A OUTPUT -o $IFACE -p udp -j LOG --log-prefix "IPTABLES UDP-OUT: "
iptables -A OUTPUT -o $IFACE -p udp -j DROP
# Any icmp not already allowed is logged and then dropped.
iptables -A INPUT  -i $IFACE -p icmp -j LOG --log-prefix "IPTABLES ICMP-IN: "
iptables -A INPUT  -i $IFACE -p icmp -j DROP
iptables -A OUTPUT -o $IFACE -p icmp -j LOG --log-prefix "IPTABLES ICMP-OUT: "
iptables -A OUTPUT -o $IFACE -p icmp -j DROP
# Any tcp not already allowed is logged and then dropped.
iptables -A INPUT  -i $IFACE -p tcp -j LOG --log-prefix "IPTABLES TCP-IN: "
iptables -A INPUT  -i $IFACE -p tcp -j DROP
iptables -A OUTPUT -o $IFACE -p tcp -j LOG --log-prefix "IPTABLES TCP-OUT: "
iptables -A OUTPUT -o $IFACE -p tcp -j DROP
# Anything else not already allowed is logged and then dropped.
# It will be dropped by the default policy anyway ........ but let's be paranoid.
iptables -A INPUT  -i $IFACE -j LOG --log-prefix "IPTABLES PROTOCOL-X-IN: "
iptables -A INPUT  -i $IFACE -j DROP
iptables -A OUTPUT -o $IFACE -j LOG --log-prefix "IPTABLES PROTOCOL-X-OUT: "
iptables -A OUTPUT -o $IFACE -j DROP
####### THE END
so what?

I'm not a iptables guru, but i can't find any imap/pop rule that accepts thouse ports.
And in your scripts the defaults are DROP so that can be it.
Maybe that is the problem?

Similar Messages

  • In 3210xi, new cartridges installed, but yellow not recognized

    3210xi will not recognize new yellow cartridge.  All cartridges are new HP cartridges, but yellow keeps indicating "missing or damaged."   Have followed cleaning instructions.  Same result.

    Hello there! Welcome to the forums!
    @annoyance 
    I understand you have all new HP cartridges installed in your Photosmart 3210xi however, the yellow is not being recognized and you're seeing an error message stating the ink cartridge is "missing or damaged".
    I wanted to reach out and share my suggestion with you. After looking through troubleshooting guides, I would recommend that you try the steps entailed in this specific document.
    The Following Ink Cartridge(s) Appear to Be Missing or Damaged' Message Displays after a New Cartrid...
    If the troubleshooting does not help at all, I would lastly suggest technical support.
    Please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region. http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
    Wishing you a great weekend!
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Apple ProRes QuickTime Decoder  - Both types say I have "a newer version installed", but I can't view Pro-Res files on either type of machine.

    I'm trying to view a Pro-Res file from Final Cut Pro on machines that have Quicktime Pro, but having no luck.  I've tried installing the "
    Apple ProRes QuickTime Decoder " for both Windows and Mac (on the correct machines), but I keep getting "You already have a newer version of this installed" on each machine, and can't finish.  Needless to say, the Pro-Res file will not play on either machine, and there seems to be no way to remove a "newer version" and install this one.  Thanks for any suggestions.

    Rob,
    There is no quicktime folder there. And no quicktime program is installed when I try to install iTunes. The only reason I tried installing quicktime in standalone was because the itunes install was not actively going to the quicktime part of its installation.
    I've tried removing everything and only installing iTunes. But even after deleting the physical files, using the WIndows Install cleanup tool, and cleaning up my registry, the quicktime portion of the iTunes install doesn't complete, and I keep getting "unknown" errors from the crash prevention program, and from what I can see it's because there's no physical Quicktime program installed.
    As for other accounts, no I cannot start it up with other accounts, I keep getting the "Unknown" error and there is no physical files for quicktime anywhere.
    And selective startup doesn't seem to work as there is NO qttask option when I run selective startup.
    So, I seem to be out of options, and thing else I could try?
    ~Jay

  • New pages installed but says I need to update Pages to open any of my previous pages documents

    I recently upgraded OSX and upgraded Pages, now I can't open any of the documents previously written with pages. It
    comes up that I need to upgrade and it is already installed.
    I need to be able to open my documents!

    Then you have 2 versions of Pages on your Mac.
    Pages 5 is in your Applications folder.
    Pages '09/'08 is in your Applications/iWork folder.
    You are alternately opening the wrong versions.
    Pages '09/'08 can not open Pages 5 files and you will get the warning that you need a newer version.
    Pages 5.01 can not open Pages 5.1 files and you will get the warning that you need a newer version.
    Pages 5 can open Pages '09 files but may damage/alter them. It can not open Pages '08 files at all.
    Once opened and saved in Pages 5 the Pages '09 files can not be opened in Pages '09.
    Once opened and saved in Pages 5.1 files can not be opened in Pages 5.
    Anything that is saved to iCloud is also converted to Pages 5 files.
    All Pages files no matter what version and incompatibility have the same extension .pages.
    Pages 5 files are now only compatible with themselves on a very restricted set of hardware, software and Operating Systems and will not transfer correctly on any other server software than iCloud.
    Apple has removed almost 100 features from Pages 5 and added many bugs:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Archive/trash Pages 5, after exporting all Pages 5 files to Pages '09 or Word .docx, and rate/review it in the App Store, then get back to work.
    Peter

  • QuarkXpress (Classic) new font installed but unavailable

    I need Gill Sans in my QXpress in Classic. I even put it in every font folder in Tiger and in QX itself, but it's not available when I get into QX. I'm new to Tiger and frustrated. I use this font in AppleWorks all the time. How to access it in Classic program? Validate passed the font. Could have I installed it incorrectly since there's no hard manual with Tiger?

    In Classic, only one font folder is relevant - the System 9 system folder's fonts folder (/System Folder/Fonts). Furthermore, the font must be in a format that is compatible with System 9; the Gill Sans that comes with Mac OS X is a .dfont, so it isn't. So the solution is simple: (1) Get yourself a version of Gill Sans that is compatible with System 9, and (2) put it in /System Folder/Fonts. You can obtain a PostScript version of Gill Sans (which will work with System 9) here:
    http://www.myfonts.com/PurchaseOptions?familyid=3828&id[]=10956

  • New HD installed, but how to install OS?

    My trusty PB lost it's factory hard drive this week. I've installed a new Samsung 160GB drive. Unfortunately, I can't for the life of me find my original PB disks (it's been almost 4 years!) It was running 10.5.1 perfectly prior to the drive failure. It also ran 10.4 long-term.
    I have retail versions of OS 10.4 and 10.5 family packs. I used these same disks to do system upgrades to the PB in the past.
    10.4 runs the installer, but tells me it can't be installed on this machine. (Disk Utility successfully identifies, partitions and verifies the new Drive).
    10.5 spits the disk out on boot-up.
    I can't seem to successfully mount a disk from another machine over Firewire.
    What are my options? I presume that one is to contact Apple for replacement disks - can't find ANY reference to that process on their site; a link would be greatly appreciated. Is inconvenient-hours Phone Support the only way to do it?
    Any suggestions greatly appreciated.

    Thanks for the thought, Mark, but as mentioned, Disk Utility worked fine off the OS 10.4 install disk. Unfortunately, it wouldn't install anything, though.
    I've solved the issue myself, so thought I'd post the answer for the benefit of others in the same situation.
    Thankfully, I used Time Machine to archive the PBs hard drive after I installed the OS and software. I still had that November archive on a Firewire drive. I couldn't boot off the Firewire drive OR the OS 10.5 disk, however. But I COULD boot the PB in Firewire Target Mood (boot system while holding "T" key). So I did.
    I then connected the PB to a MacPro via Firewire. The Intel vs. PPC mismatch meant I couldn't just do a system install onto the PB drive from the MacPro.
    The MacPro is still running OS 10.4, so I had to boot the MacPro with the OS 10.5 install disk, then start Disk Utility and choose the Time Machine Restore function.
    The PB drive was restored to the same state it was in in November, which meant I didn't need to re-install third party software or anything. I'm SOLD on Time Machine!

  • New software install but files are old

    I just got a Palm Centro.  I've had a Palm 505 for years, had Palm desktop on my Vista computer for 1 1/2 years.  I installed the Palm Desktop software that came with my Centro on my Vista computer and my calendar, memos, addresses all look like they did 1 1/2 years ago.  I had synced immediately before installing the new software.  I had a back up of my folder with all these files, so I replaced my folder "Kris" with address, datebook, etc files.  I closed Palm Desktop and restarted it.  No luck, I still have all my old info - not up to date.  I have not synced my phone with the computer since this isn't right.  And, I'm afraid to sync my current palm and lose everything off there (since my "backup") didn't seem to work.  Help!  How do I get all my current info back?!
    Post relates to: Centro (Sprint)
    This question was solved.
    View Solution.

    Did you install the version of Palm desktop that you got with the Centro, 6.2?
    There is a procedure to try to recover your files. Look in the following location for the Palm desktop username folder.
    C:\Users\(Windows username)\Documents\Palm OS Desktop\
    Look in the username folder for the category folders, address/contacts, datebook/calendar, etc. In those folders are the data files. Look for the files with names like address.mdb, address.mdb.bak. The .mdb file is the current data file, the .mdb.bak is the backup file. Try to rename the .mdb file to .mdb.old. Then rename the .mdb.bak file to .mdb (remove the.bak extension). Open Palm desktop and see if the data is there. IF you don't have the .bak file then you cannot rename to recover the data.
    When you upgrade to a new device using palm desktop 6.2, the files from the old version of Palm desktop in the username folder are not compatible. You cannot drag and drop the files into the new username folder.  The data files in Palm desktop 6.2 are in a Microsoft Access Datbase format, thus the .mdb extension.
    See if you can rename the .mdb files first to see if you can recover the data. If you can't using that method, you can "clean" uninstall the Palm desktop currently installed, install the version you were working with before the upgrade, copy the Username folder you backed-up from the old version and paste it in the old Palm desktop folder. Open Palm desktop and see if the data is there. Another option is to sync the old device to the old version of Palm desktop and then export the data.
    Once that is installed and you have the data intact in the old version of Palm desktop, export the data, install the new Palm desktop and import the data. With the export and import procedure you can use the data in any version of Palm desktop.
    If the rename doesn't work, do the "clean" uninstall using the directions below.
    You should first make a copy of your data to have just in case something
    happens. You can find your data files by going to Start --> Documents -->
    Palm OS Desktop. Highlight your Palm Desktop username and right click and
    copy. Then go to your PC desktop right click on a blank spot and select paste.
    Now you want to uninstall Palm Desktop and remove everything that has to do
    with Palm Desktop from your computer.
    Go to the following locations on the PC and delete the folders listed below.
    C:\Program Files\Palm or Palm One
    C:\Users\[Vista Login Name]\appdata\local\virtualstore\Program Files\Palm or
    PalmOne
    C:\Users\[Vista Login Name]\appdata
    *Note you may need to view hidden folders to get to appdata. To do that go
    into your control panel and open folder options. Go to view tab and uncheck
    hide hidden files.
    Once this is done you will need to delete some registry keys from your PC Operating System.
    Word of warning, going here and deleting the wrong thing can cause your PC
    from starting up, crashing and deletion of programs and data. If you feel
    you are unsure of yourself, see if you have a friend that can help you or a
    PC technician that you can pay to help you. This procedure will show them everything they need to delete. To make sure we have a good copy of the current registry, we need to do a backup of the Registry.
    Go to start on the PC, in the search field type "regedit.exe" without quotes.
    Highlight COMPUTER, go to File --> Export. Should pop up with a Save As box.
    Current location is fine, should be in My Documents or save to a location you will remember. In the file name on the bottom type "backup[todaysdate]" i.e. backup07072008. Next, the hard part.
    The easiest way to make sure your working with the correct key, highlight the key i.e. palm quick install, and press delete on your keyboard. It will ask you, are you sure. Say yes. Do the same thing for all keys below.
    If you make a mistake, stop what you are doing. And call a PC technician.
    BUT do not turn off your computer.
    The reg keys are as follows (Note: some of theses reg keys will not be here
    but if they are delete them)
    * HKEY_CURRENT_USER\Software\U.S. Robotics\Palm Quick Install
    * HKEY_CURRENT_USER\Software\U.S. Robotics\PalmOne File Transfer
    * HKEY_CURRENT_USER\Software\U.S. Robotics\Pilot Desktop
    * HKEY_CURRENT_USER\Software\Palm
    * HKEY_CURRENT_USER\Software\Palm, Inc.
    * HKEY_CURRENT_USER\Software\PalmDesktopAutorun
    * HKEY_CURRENT_USER\Software\palmOne
    * HKEY_CURRENT_USER\Software\PalmSource
    * HKEY_LOCAL_MACHINE\Software\PalmSource or anything else that says palm
    Next reboot your computer.
    Then reinstall your palm desktop from the CD and do a hotsync. If it asks
    you for a username and you synced your device before, put in 'test" if you
    did not sync before create a hotsync name.
    Post relates to: Palm i705
    Message Edited by cygnusX1 on 10-07-2008 04:00 PM

  • Creative Cloud says new Photoshop installed but old version remains

         Today, I attempted to update Photoshop CC (2014) and Bridge to new versions.
    The installation appeared to complete and Creative Cloud said the apps are up to date, but they remain the previous versions.
    What can I do to rectify this?

    Well, I must have been mistaken because it says there is no newer version -- and yet when I updated to the new Lightroom CC this evening the Creative Cloud App said there were also updates to Photoshop CC 2014 and to Bridge. And then it said it installed these.
    And my applications folder shows changes to the contents of the Photoshop and Bridge folders at the time I did the updates.
    However the apps themselves remain the same with Photoshop still being 2014.2.2.
    I apparently leapt to the wrong conclusion.
    Thanks very much for your help.

  • New RAM installed but System Profiler still seeing old RAM

    Hi
    Recently put in a new hard drive after the last one failed. The new RAM, equaling 3GB, was installed on my iMac C2D 24" BEFORE the failure. I got it back from the shop today and checked to see if the RAM was still recognised. The System Profiler is showing 1GB or RAM, 512 in each slot, and the serial numbers match the RAM that came with the computer originally.
    I'm running Snow Leopard and haven't noticed anything running slow. Is this just a glitch in the matrix?

    So you are saying the original DIMMs are there plus the ones you added, all were recognized before the repair but only the Apple-supplied after the repair.
    Just trying to keep all of this straight in my mind.
    In that case, you might try removing the DIMMs you installed and reinstalling, one at a time and see if they are recognized. If they are not, then they may have gone bad for some reason, who knows why, and it is time to look at the warranty you have from the people from whom you purchased the DIMMs.
    If it was someone like Crucial or OWC (macsales) they are really good about their lifetime warranty.
    If the warranty is lifetime, contact the supplier and see what the process is for replacement.
    It is strange that both would work, and then fail. But stranger things have happened with computers.

  • New app installed, but wont work?

    i download a new app today and it's on my menu, but when i hit it, it starts to activates then just dumps to home. any ideas??? anyone???

    I'm having the same problem....Anybody have any information for us????

  • New DRIVES installed but only 1 listed (raid question)

    I just upgraded from Adobe Premier Pro CS2 to CS4.  After installing it on my PC computer (XP) I also decided to upgrade my computer drives and memory.  My classroom in a book states that three drives are best.  Drive one is dedicated to the operating system and programs, drive two (the fastest drive) dedicatd to captured video and video previews and drive three dedicated to audio, misc. still images and exporting.
    I told my computer tech what I wanted and yesterday I picked-up my computer with an invoice that read:
    1 - EVGA GeForce GTX 260 Core 192 896MB 448-bit GDDR3 PCI Express 2.0 X 16 HDCP Ready SLI Supported Video Card
    1 - Western Digital 250GB SATA 16MB 7200rpm 3.5" Hard Drive Raid with current 250GB
    1 - Western Digital 1TB Caviar Green SATA 7200rp 64MB Hard Drive Windows Backup Drive
    1 - 1 GB DDR2 PC2-6400 800MHz 240-pin (total 3GB RAM)
    1 - Rebit Backup Software Windows XP (required for XP)
    1- Set-up Window XP RAID with backup software and drive
    My tech told me that EVERYTHING would be saved to the 'C:' drive!
    HERE'S MY QUESTION: When I booted-up my computer and checked 'my computer' I only saw one drive listed - The 'C:' drive. (WINXP).  Also listed was my 'E:' drive (DVD RAM Drive), a Rebit icon and two folder files (my documents and shared documents).
    I expected to see 3 drives.  My tech told me that RAID means to connect the drives.
    WHAT I NEED TO KNOW IS:
    1 - What exactly doe RAID mean/do?
    2 - Do I create FILE FOLDERS on my 'C:' drive for all my CS4 files?  Importing/Rendering/Backup/Scrath/Previews/Etc.
    3 - SOMEONE OUT THERE PLEASE TELL ME HOW TO DIRECT MY CS4 FILES TO THEIR APPROPRIATE PLACES AND WHERE THAT IS.
    THANKS
    Tom 

    Bill...
    I went back to my tech and told him what you said...he sent me this e-mail:
    Ok Tom,  we will remove the RAID configuration drive so  that is has Drive letters. 
    You will loose the performance aspect: "RAID is a array of physical HDD's, and can be hardware, or software managed. The two main uses are for an increase in size (say two physical HDD's seen as one) and speed, as the reads/writes are spread over two HDD's, instead of one"
    C:\ OS, programs and possibly the Windows Page File (Statically Managed)
    D:\ Projects w/ Scratch Disks
    E:\ Media
    The 1TB will still be the BACKUP DRIVE, shown as Rebit.   You Only have access to that to recover data or System Disaster.
    (Drive letters may be different than you listed)
    As you may have noticed the speed of the storage and Scratch Disk is a BIG factor of the Adobe process!
      The settings you and the tech are asking for are based on the old rules.
    However,  since this is what you want I apologize for doing it the way adobe instructed us to do it for previous customers (who are happy with the RAID setup).  We will convert your drive to your request.
    Please bring the machine back at your convenience (on a weekday) and I will have it done ASAP.  If I have it in the morning you wil have it by afternoon.
    Again, the backup drive is a REBIT drive you will not have access to it other than for data or system restore.
    My sincere applogies, Matt
    BILL...should I leave my computer alone...do you agree with my tech?  Should I return it and have him do it according to what Adobe Classroom In A Book says?
    Thanks again, in advance...
    Tom

  • Wanting to create a new Apple ID but says the email is unavailable/ maybe used already

    I Am trying to create a new Apple ID but the email I am trying to use is unavailable or used already.  How is that possible?  Is it because I have that email in
    my phone as well as my email I use for my Apple ID?

    Is it because I have that email in
    my phone as well as my email I use for my Apple ID?
    So you're already using this particular email for your current Apple ID programed into your phone?
    Every new Apple ID must use a unique email, you can't create 2 Apple ID's with the same email account.

  • How do I back up data from My iPad 2 to My Mackbook pro, that has a new HDD installed in it.

    Hi guys,
    I have an ipad2 with some home movies that I had transferred from my 2011 mackbook pro.
    The HDD of my macbook had a mechanical failure recently so I had to get a new one installed but obviously lost some home movies and familly photos.
    Now, I have some of that data on my ipad2 but but everytime I connect it to my mackbook, it wants to delete the previous data on my ipad2.
    Is there any way that I can transfer those home movies from my ipad2 to my mackbook without deleting it?
    And if that is not possible then how can I transfer data/movies etc from my macbook to ipad2 without deleting the existing one on the ipad?
    P.S. They are both on the same wifi network and I have maverick OS on mac and iOS7 on the ipad.

    It is a very easy thing to do. If you bought the apps with your Apple ID you can always download them again for free - using that same ID - in the purchased tab of the App Store. If you bought the apps, you can keep them all.
    What I would do is ... Before you give her the old iPad, transfer all purchases into iTunes on your computer, backup your iPad with iTunes and sync one last time. Then when you get your new iPad, restore form the old iPad backup and sync with iTunes and the new iPad should be identical to the old one.

  • Mac OS 10.10.2 is installed and can open documents on my new Mac Air but an error message occurs with I try to attach a PDF to emails.  Any thoughts?  Apple was unable to help.

    Mac OS 10.10.2 is installed and can open documents on my new Mac Air but an error message occurs when trying to attach a PDF to emails.  Apple was not able to fix.  Any thoughts?

    The message says:
    Please wait
    If this message is not eventually replaced by the proper contents of your document, your PDF viewer may not be able to display this type of document. 
    Then it goes on to suggest an Reader upgrade, which I already did. 

  • I already have installed Ai, Lr an Id, but when I try to use it the software says that the Proof period is over, and then ask me for a Serial Number of 6 digits. otherwise It offers to me to purchase a new subscription. BUT I ALREADY PAY 2 MONTH of THIS P

    I already have installed Ai, Lr an Id, but when I try to use it the software says that the Proof period is over, and then ask me for a Serial Number of 6 digits.
    otherwise It offers to me to purchase a new subscription. BUT I ALREADY PAY 2 MONTH of THIS PLAN!!!!!! 
    I want to USE the products….CAN YOU HELP ME????
    regards,
    Leticia
    There aren´t an email, a phone number, a chat or a place to find helpful. I live in Argentina, where I can find a solve to my problem?

    Does your Cloud subscription properly show on your account page?
    If you have more than one email, are you sure you are using the correct Adobe ID?
    https://www.adobe.com/account.html for subscriptions on your Adobe page
    If yes
    Some general information for a Cloud subscription
    Cloud programs do not use serial numbers... you log in to your paid Cloud account to download & install & activate... you MAY need to log out of the Cloud and restart your computer and log back in to the Cloud for things to work
    Log out of your Cloud account... Restart your computer... Log in to your paid Cloud account
    -Sign in help http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html
    -http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html
    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    -http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html
    -ID help https://helpx.adobe.com/contact.html?step=ZNA_id-signing_stillNeedHelp
    -http://helpx.adobe.com/creative-cloud/kb/license-this-software.html
    If no
    This is an open forum, not Adobe support... you need Adobe staff to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"
    If you really want to cancel, You need Adobe support to cancel a subscription
    -start here https://forums.adobe.com/thread/1703848
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html
    --and two links which may provide more details, if the above links don't help you
    -http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    -http://helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html

Maybe you are looking for