Calendar
iPod
Contacts
Radios
Preferences
MailSearch
Google
Installer
Commands
Safari
YouTube
Downloads

Documentation: Commands page

Updated: version 2.28.1

2.28 had a bug preventing wget from working.

What is an MNPLight command ?

MNPlight commands are read from mails received on the iPhone. They have the following format:

begin mnplight command_name
...FS code...
end mnplight

To import a new command from your mails, do the follwoing:

  1. Verify that the mail is on your iPhone using MobileMail.
  2. Kill MobileMail: in MobileMail, push the Home button for 8 seconds until you are back to the icons board.
  3. Open the Commands page in MNPlight, it will read the mails and insert the new commands in the page.

Once a command has been imported, you can execute it as many times as you want, or you can delete it.

How to insert a note in your iPhone using a command ?

You can use commands to insert notes in the Notes application. You have the choice between using the new_note FS function, or starting the command name with the word note.

You can insert one of the following commands in a mail:

begin mnplight this is a new note
  new_note("title of note", "content of note");
end mnplight

or:

begin mnplight note title of note
  content of note
end mnplight

Once the command has been imported in MNPlight, execute it to insert the note in the Notes application.

How to command a download ?

You can use the wget FS command to download a file to your iPhone.

begin mnplight download command
  wget("http://.../foobar.mp3", "/var/mobile/Media/MNPlight/music/");
end mnplight