我正在使用mbuni通过http url
发送mms作为smil内容content-type=application/smil
和
content-url=http://localhost/TestSmil.smil
现在mms被提交到手机,但图像没有下载。
group = core
log-file = /tmp/mms/log/mmsbox.log
access-log = /tmp/mms/log/mmsbox-access.log
log-level = 0
group = mbuni
storage-directory = /var/spool/mbuni
max-send-threads = 5
maximum-send-attempts = 1
default-message-expiry = 360000
queue-run-interval = 5
send-attempt-back-off = 300
sendmms-port = 10001
content-adaptation = false
allow-adaptations = 0
group = mmsc
id = 123456
mmsc-url = http://123456:MYVASID@<MMSC_IP>:8080/vas_soap
incoming-username = 123456
incoming-password = PWD
incoming-port = 12345
type = soap
default-vasid = MYVASID
content-adaptation = false
allow-adaptations = 0
group = send-mms-user
username = tester
password = foobar
faked-sender = 100
allow-adaptations = 0
mmsbox的网址
http://localhost:10001/cgi-bin/sendmms?username=tester&password=*****&from=12345&to=9199********&subject=TestMMS&allow-adaptations=0&content-adaptation=false&vasid=123456&content-type=application%2Fsmil&content-url=http%3A%2F%2Flocalhost%2Fmms%2FTestSmil.smil
微笑文件内容和路径
<smil>
<body>
<seq repeatCount="indefinite">
<img src="image1.jpg" dur="3s" />
<img src="image2.jpg" dur="3s" />
</seq>
</body>
</smil>
路径是/ var / www / html / mms /。我也改变了从image1.jpg到mms / image1.jpg的图像路径,但没有变化。
如果我发送直接图片,例如content-url = http://localhost/image1.jpg,它就会正常发送。