refactoring and cleanup
This commit is contained in:
40
content/nerdstuff/mail.md
Normal file
40
content/nerdstuff/mail.md
Normal file
@ -0,0 +1,40 @@
|
||||
---
|
||||
title: Mail
|
||||
menu:
|
||||
main:
|
||||
parent: Nerdstuff
|
||||
---
|
||||
|
||||
Stuff to know about mail
|
||||
## Fetchmail
|
||||
|
||||
```
|
||||
fetchmail pop.gmx.net --ssl --verbose --username _username_ --protocol pop3
|
||||
```
|
||||
|
||||
## SMTP via Telnet
|
||||
### query MX record (mailserver)
|
||||
|
||||
```sh
|
||||
dig mx br0tkasten.de
|
||||
```
|
||||
|
||||
### connect to mailservice @ mailserver
|
||||
|
||||
```sh
|
||||
telnet mail.br0tkasten.de 25
|
||||
```
|
||||
|
||||
### send testmail
|
||||
|
||||
```SMTP
|
||||
ehlo barbecue.com
|
||||
MAIL FROM: root@barbecue.com
|
||||
RCPT TO: info@br0tkasten.de
|
||||
DATA
|
||||
Subject: Bla fasel
|
||||
|
||||
Das ist eine Testmail
|
||||
.
|
||||
QUIT
|
||||
```
|
21
content/nerdstuff/tiptoi.md
Normal file
21
content/nerdstuff/tiptoi.md
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: tiptoi
|
||||
menu:
|
||||
main:
|
||||
parent: Nerdstuff
|
||||
---
|
||||
|
||||
# tiptoi
|
||||
## Download media files
|
||||
|
||||
Goto http://www.tiptoi.com -> Choose book -> "Audiodatei manuell herunterladen"
|
||||
|
||||
## Manually mount
|
||||
|
||||
When connecting the pen to a computer using a mini USB cable dmesg will show a new storage device (e.g. /dev/sdc). According to '''parted''' partition table is of type '''loop'''. Linux will not show hardware devices to mount the partition (e.g. /dev/sdc1).
|
||||
|
||||
To mount the filesystem use:
|
||||
|
||||
```
|
||||
mount -t vfat -o loop,rw /dev/sdc /mnt
|
||||
```
|
Reference in New Issue
Block a user