Hi sorry on the typo, its not address book, but its the address location of the MO. Its the address of the MO on the SIMM or modem. You should set the modem to store to the SIMM instead.
AT+CPMS="SM"
ref:
http://smstools.meinemullemaus.de/faq.html
I already posted the link but:
http://www.developershome.com/sms/
was the best resource I found.
And (
http://www.pharscape.org/index.php?option=content&task=view&id=29 )
...
3.3.2 Receiving an SMS
For SMS receiving, you normally wait for the unsolicited response
+CMTI: "SM", n
This indicates a new SMS has been placed in the SM storage as message ‘n’.
You can read the message by issuing:
AT+CPMS=”SM”
to select the SM storage location and then to read the message:
AT+CMGR=n
Which displays:
+CMGR: "","",,""
can be "REC UNREAD", "REC READ", "STO UNSENT", "STO SENT", where REC means received (= incoming), STO means stored (= outgoing).
On the next line, you will see the text of the message. Since the CMGR command (just like the others ) finishes with “OK", you have to be careful processing a message that has this character sequence in it. This is one of the limitations of the Text Mode.
After getting the SMS, you need to delete it from the SIM in order not to fill the limited storage space. You can delete any message by issuing
AT+CMGD=n
where "n" is the store number .
3.3.3 Listing the Messages
Select the correct message store:
AT+CPMS=”SM
List all unread messages:
AT+CMGL="REC UNREAD”
List all unsent messages:
AT+CMGL=" STO UNSENT”