X-Git-Url: http://git.jankratochvil.net/?p=www.jankratochvil.net.git;a=blobdiff_plain;f=product%2Fmms2%2FIndex.pm;fp=product%2Fmms2%2FIndex.pm;h=de809eb625f15c9c39e5010a11595bf8694cd459;hp=0000000000000000000000000000000000000000;hb=44ff093eb0423ce0d3397f785479a9958e53fd4a;hpb=51be849e46d5c1a18583c9cf6c8cc8fde1e357b1 diff --git a/product/mms2/Index.pm b/product/mms2/Index.pm new file mode 100644 index 0000000..de809eb --- /dev/null +++ b/product/mms2/Index.pm @@ -0,0 +1,167 @@ +# $Id$ +# Main page of 'product::mms2' +# Copyright (C) 2005 Jan Kratochvil +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; exactly version 2 of June 1991 is required +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +package product::mms2::Index; +require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway +our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; }; +our $CVS_ID=q$Id$; +use strict; +use warnings; + +use My::Web; + + +our @ListItem=( + "name"=>"MMS2", + "priority"=>100, + "icon"=>"icon.jpeg", + "summary"=>"Alternative center for cheaper mobile phones multimedia messages (MMS)", + "description"=>sub { return <<"HERE"; }, +

You can use MMS messages for a price slightly higher than regular SMS +message, depending on the GPRS data price plans of your country. +Service is suitable to coexist with existing GSM networks MMS services.

+

LOOKING FOR AGENTS: Would you like revenue share of this service deployed +even for your country? Do not miss the chance - @{[ a_href '/product/mms2/#agent','checkout more!' ]}

+HERE + ); + +sub handler +{ +Wuse 'product::Lib'; +my $W=product::Lib->init( + "css_push"=>"/product/mms2/Index.css", + ); + +my $ListItem=product::Lib->name_to_hashref("mms2"); + + +# would get wrapped to the image width. +print <<"HERE"; +

@{[ product::Lib->title($ListItem) ]}

+ +

Currently supported client mobile phones of the country: Czech Republic

+ + + +
@{[ + img 'web-screenshot256.png','www.mms2.org web link', + "a_href"=>'http://www.mms2.org/' + ]}
@{[ a_href 'http://www.mms2.org/','www.mms2.org web link' ]}
+HERE + +print <<"HERE"; +

Revenue share from MMS in your country

+ +

This calculation is based on an assumption price for sending 1 MMS message +(MMS_price) is constant. In some countries the MMS messages are exactly +for the price of the GPRS data transfer itself - there definitely does not make +any sense to deploy this custom MMS center called MMS2:

+ +
+ min(SMS_price, EUR 0.04) + 20 * 1KB_GPRS_price + income + < MMS_price +
+ +

Each MMS transaction requires 1 notificating binary SMS and usually about 20 +KB of GPRS transferred data. Please note there is generally no possibility to +use any free or cheap SMS gateways as they cannot pass arbitrary binary +data. MMS transaction scheme:

+ +@{[ centerimg "mms-xfer.svg","MMS Transaction" ]} + +

I am also interested in SMS prices valid for sending messages to the +countries worldwide substantially below the currently available sending for the +price EUR 0.04.

+ +

Your deployment of MMS2 will need to cover at least very detailed +local price plans analysis, appropriate kind of service marketing and basic +service deployment testing. Currently already covered countries: +Czech, +Japan. +Do not hesitate to contact me: @{[ a_href 'mailto:mms2@jankratochvil.net' ]}

+ +

Do you consider MMS dead? The service really did not reach the expectation +but it is usually caused at least by its current exaggerated prices trying to +cover its expensive development. With the proper international cooperation and +this service framework with low investition costs it may undercut even the +prices of your local SMS prices! Currently it already can equal the MMS +price to the usual SMS price due to different available SMS service prices.

+ + +

Any disadvantages?

+ +

The cooperation with existing MMS center is the major problem although it +should be acceptably resolved for the target customers of this alternative +center MMS2. It cannot be deployed with official MMS centers +interconnecting contract with existing operators as the fees for MMS +termination in the 'legacy' MMS center would inhibit any competitive prices of +the MMS service itself offered by this alternative center MMS2. It may +be different in your country, though - check yourself, please

+ +

Currently deployed service is based on:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Originating Mobile—>Recipient MobileDevelivery Method
Legacy operator's center—>Legacy operator's center(legacy, not MMS2 related)
MMS2 service—>Legacy operator's centerMMS2 initiated WAP-Push
Legacy operator's center—>MMS2 serviceoperator initiated text SMS
MMS2 service—>MMS2 serviceMMS2 native MMSE delivery
+ +

WAP-Push type delivery for non-MMS2 recipients includes information +on subscribing the cheaper MMS2 provider thus the friends really wanting +to save on MMS messages cost will all move to the alternative MMS2 +services while utilizing the standard (MMSE) native MMS messages delivery.

+ +

In the case the customer is already subscribed to the alternative +MMS2 center and it is sent MMS message via the legacy operator's MMS +center it will get delivered generally only as text SMS message with web pickup +instructions. This is the only serious drawback of this MMS2 +services.

+ +HERE + + +exit; +} +1;